#nav{
    height: 5px;
    padding: 5vh 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav img{
    width: 100px;
}

#nav #right{
    display: flex;
    align-items: center;
    gap: 40px;
}

#nav i{
    margin-top: 3px;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
}

#nav a{
    text-decoration: none;
    font-weight: 400;
    font-size: 1.5vmax;
    color: #ffffff;
    letter-spacing: -1;
}

#menu{
    height: 100vh;
    width: 20vmax;
    position: fixed;
    top: 0;
    right: -23vmax;
    background-color: #00000066;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5vh;
    padding-left: 3vw;
    z-index: 2;
}

#menu a{
    color: #fff;
    font-size: 3vmax;
}

#menu a:hover{
    color: #FFD230;
}

#menu i{
    font-size: 2vmax;
    position: absolute;
    top: 3vh;
    right: 13%;
    cursor: pointer;
    color: #fff;
}