body {
    background-color: #2c2c2c; /* Dark gray background */
    color: #ffffff; /* White text for contrast */
    font-family: Arial, sans-serif; /* Example font */
    margin: 0;
    padding: 0;
}

header {
    background-color: #0097a7; /* Darker cyan header background */
    padding: 20px; /* Add some padding */
    text-align: center;
}

.banner-image {
    width: 100%; /* Makes the image full width */
    height: auto; /* Maintains the aspect ratio */
}

nav ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
}

nav ul li {
    display: inline; /* Display items in a row */
    margin-right: 20px; /* Space between items */
}

nav ul li a {
    color: #ffffff; /* White text for links */
    text-decoration: none; /* Remove underline */
}

nav ul li a:hover {
    color: #ff9800; /* Light orange on hover */
}

section {
    padding: 20px; /* Add padding to sections */
    background-color: #424242; /* Dark gray for sections */
    margin: 10px 0; /* Space between sections */
    border-radius: 5px; /* Rounded corners */
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
}

#banner {
    height: 320px; /* Set the desired height for the banner */
    overflow: hidden; /* Hide any overflow */
    position: relative; /* Ensure positioning context */
}

.banner-image {
    width: 100%; /* Make the image take the full width */
    height: 100%; /* Set the height to fill the banner */
    object-fit: cover; /* Cover the area, cropping as necessary */
    object-position: center 40%; /* Move the image up by 40% */
}

#books {
    padding: 20px; /* Add padding to the books section */
    background-color: #424242; /* Dark gray background for consistency */
    margin: 10px 0; /* Space between sections */
    border-radius: 5px; /* Rounded corners */
}

#books h2 {
    color: #00bcd4; /* Cyan color for the heading */
}

#books h3 {
    color: #00bcd4; /* Cyan color for the subheading */
}

#books ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
}

#books ul li {
    color: #ffffff; /* White text for book titles */
    margin: 5px 0; /* Space between book titles */
}

h1, h2, h3, h4, h5, h6 {
    color: orange; /* Set the color of all titles to orange */
}

.game-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00bcd4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0;
    transition: background-color 0.3s;
}

.game-link:hover {
    background-color: #0097a7;
}

.game-container {
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 20px auto;
    background-color: #424242;
    border-radius: 5px;
    overflow: hidden;
}

.game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}