/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
header{
       padding: 0;
       margin: 0;
}

section{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}



.hero{
    width: 100%;
    height: 500px;
}

.hero img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and(max-width:800px) {
    .hero{
        width: 600px;
    }
    
}



/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    background-color: #0b0909;
    overflow: hidden;
}

.navbar li {
    text-decoration: none;
    float: left;
}

.navbar li a {
    display: block;
    color: rgb(239, 231, 231);
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

.navbar li a:hover {
    background-color: #ed0f0f;
    color: rgb(11, 10, 10);
}



.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #060505;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Footer Styles */
footer {
    background-color: #070606;
    color: white;
    padding: 24px;
    text-align: center;
}

.footer-menu {
    list-style-type: none;
    margin-bottom: 10px;
}

.footer-menu li {
    display: inline;
    margin-right: 20px;
}

.footer-menu li a {
    color: rgb(245, 241, 241);
    text-decoration: none;
}

.footer-menu li a:hover {
    color:#f10d0d;
    text-decoration: underline;
}
