@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Ceviche+One&display=swap'); /* Importing spooky font */

* {
    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 */
}

.content-wrapper {
    display: flex; /* Horizontal layout for navigation and content area */
    margin: 20px; /* Margin around content */
}

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

.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 */
}


	
	.content-area {
    flex: 1; /* Allow this area to grow and take the rest of the space */
}

.main-image {
    width: 100%; /* Make the main image responsive */
    height: auto; /* Maintain aspect ratio */
}

.text-content {
    color: #000; /* Sets text color to black */
    margin-top: 20px; /* Space above the text content */
}

.text-content h2 {
    color: #000; /* Also set the title color in the content area to black */
}

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


h1 {
    color: black; /* Set text color to black */
    text-align: left; /* Align text to the left */
    font-size: 40px; /* Set font size to 40px */
}


h5 {
    color: black; /* Set text color to black */
    text-align: left; /* Align text to the left */
    font-size: 20px; /* Set font size to 40px */
}


	
	.horizontal-nav {
    display: flex;
    justify-content: space-around; /* Space evenly */
    background-color: rgba(0, 0, 0, 0.8); /* Darker background */
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px; /* Adding rounded corners */
}

.horizontal-nav ul {
    list-style: none; /* Remove bullets from list */
    display: flex; /* Horizontal layout */
}

.horizontal-nav ul li {
    margin: 0 20px; /* Space between items */
}

.horizontal-nav ul li a {
    font-family: 'Ceviche One', cursive; /* Apply spooky font */
    color: #ffcc00; /* Highlight spooky color */
    text-decoration: none;
    font-size: 1.2em; /* Larger font size for emphasis */
    transition: color 0.3s, transform 0.3s; /* Add transition for effects */
}

.horizontal-nav ul li a:hover {
    color: #e67300; /* Change to another spooky color on hover */
    transform: scale(1.1); /* Slight zoom effect */
}
	
	
	
	

