*{
    margin: 0;
    padding: 0;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(21, 241, 39, 0), rgba(241, 249, 9, 0)), url(Images/Stowe-2024.JPG);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img {
    width: 400px;
}
.nav-menu{
    flex: 1;
    text-align: center;
}

.nav-menu ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-menu ul li a{
    color: rgb(243, 232, 20);
    text-decoration: none;
    font-size: 24px;
}

.nav-menu ul li::after{
    content: '';
    width: 0%;
    height: 6px;
    background: rgb(10, 74, 16);
    display: block;
    margin: auto;
    transition: 0.7s;
}
.nav-menu ul li:hover::after{
    width: 100%;
}