* {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "Dubai";
}

body {
    background-color: #1f2121;
}

#nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 5vh;
    border-radius: 5vh;
    box-shadow: 0px 4px 20px rgba(248, 172, 41, 0.2);
    backdrop-filter: blur(2vw);
    padding: 1vh 0;
    position: fixed;
    top: 2vh;
    left: 50%;
    transform: translateX(-50%);
    flex-wrap: nowrap;
}

.link {
    height: 100%;
    width: auto;
    padding: 0 1.5vw;
    color: white;
    font-size: 2.5vh;
    font-weight: 500;
    text-decoration: none;
    line-height: 5vh;
    transition: color 0.5s ease-in-out;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link:hover {
    color: #f8ac29;
}

#nav-logo {
    height: 5vh;
    width: auto;
    padding: 0 1vw;
}

#nav-hamburger-logo-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-link {
    padding-right: 2vw;
}

.hamburger {
    display: none;
}

@media screen and (max-width: 1000px) {
    #nav {
        width: 90vw;
        height: auto;
    }

    #nav-hamburger-logo-group {
        width: 100%;
        justify-content: space-between;
        height: fit-content;
    }

    #nav-logo {
        padding-left: 5vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hamburger {
        display: inline-block;
        padding-right: 5vw;
    }
    
    .text-link {
        display: none;
    }

    #nav.phone {
        flex-direction: column;
        justify-content: center;
        border-radius: 2.5vw;
        flex-wrap: wrap
    }

    .phone .text-link {
        display: none;
    }
}

.banner {
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url("../imgs/nats/1-072A9764.jpg");
    background-size: cover;
    background-position: center;
}