* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Times New Roman', Times, serif; /* Sets the font style */
    line-height: 1.6; /* Increases line spacing for readability */
    color: #eee; /* Sets the text color to light gray */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Arrange items in a column */
}

header {
    padding: 20px; /* Space around the header */
}

.header-links {
    text-align: right; /* Align links to the right */
}

.header-links a {
    color: #fff; /* White for link color */
    text-decoration: none; /* No underline on links */
    margin-left: 20px; /* Spacing between links */
}

.content-wrapper {
    display: flex; /* Horizontal layout for navigation and image */
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    justify-content: flex-start; /* Align items to the left */
    margin: 20px; /* Margin around content */
}

.city-nav {
    flex: 0 0 200px; /* Fixed width for the nav area */
    padding: 20px; /* Space inside navigation */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    border-radius: 5px; /* Rounded corners */
}

.city-nav h2 {
    color: #ffcc00; /* Highlight color for the title */
}

.city-nav ul {
    list-style: none; /* Remove bullets from list */
}

.city-nav ul li {
    margin: 10px 0; /* Space between navigation items */
}

.city-nav ul li a {
    color: #fff; /* White for links */
    text-decoration: none; /* No underline on links */
}

.main-image {
    flex: 2 1 600px; /* Allow the image to take larger width */ 
    width: 100%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
    margin-left: 20px; /* Space between navigation and image */
    border-radius: 5px; /* Rounded corners for the image */
}

.game-intro {
    text-align: center; /* Center the text */
    margin-top: 20px; /* Space above the intro section */
}

footer {
    text-align: center; 
    padding: 15px; 
    background: #444; /* Dark background for footer */
}

@media (max-width:
