body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden; /* Hide overflowing content */
}

/* Style for the banner image */
header img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover; /* Crop the image to cover the entire container */
    max-height: 300px; /* Adjust the max-height as needed */
    object-position: top; /* Keep the top of the image visible */
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

header a {
    color: #fff;
    text-decoration: none;
}

main a {
    color: #3498db;
    text-decoration: none;
}

main h1,
main h2 {
    color: #3498db;
}

header h1,
header h2 {
    color: #fff;
}

p {
    line-height: 1.6;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}