body {
margin: 0;
font-family: Arial, sans-serif;
}

/* Navbar */
nav {
background-color: darkred;
color: white;
display: flex;
justify-content: space-between;
padding: 15px;
}

nav ul {
list-style: none;
display: flex;
gap: 15px;
}

nav ul li a {
color: white;
text-decoration: none;
}

/* Sections */
section {
padding: 40px;
text-align: center;
}

/* Home Section */
#home {
background-color: orange;
color: white;
padding: 80px 20px;
}

/* Gallery */
#gallery img {
margin: 10px;
border-radius: 10px;
}

/* Contact Links */
#contact a {
color: green;
font-weight: bold;
text-decoration: none;
}

/* Footer */
footer {
background-color: black;
color: white;
text-align: center;
padding: 10px;
}
