/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('background.jpg'); /* replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #300;
    padding: 160px 15px 15px 15px;
}

/* Semi-transparent dark overlay for readable text */
header, section {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Header styles */
header {
    text-align: center;
    padding: 50px 20px 30px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.5rem;
}

/* Main content */
main {
    max-width: 600px;
    margin: 0 auto;
}

h2 {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

a {
    color: #00d4ff; /* bright cyan for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: #ccc;
    font-size: 1.1rem;
}
