.nav-button{
    display: flex;
    height: 3.906vh;
    padding: 0.391vh 1.111vw 0.391vh 0.833vw;
    justify-content: center;
    align-items: center;
    gap: 0.278vw;
    border-radius: 3.889vw;
    border: none;
    background: var(--violet-50, #786EDF);;
    color: #fff;
    box-shadow: 0px 4px 4px 0px rgba(120, 144, 156, 0.25);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 1.367vh;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
}

.nav-button img{
    display: flex;
    width: 2.344vh;
    height: 2.344vh;
    justify-content: center;
    align-items: center;
}

.nav-button:hover{
    transform: scale(1.05);
}

@media (max-width: 480px){
    .nav-button{
        flex-shrink: 0;
        height: 3.941vh;
        padding: 0.493vh 3.2vw 0.493vh 2.133vw;
        gap: 1.067vw;
        border-radius: 14.933vw;
        font-size: 1.478vh;
        box-shadow: none;
    }
    .nav-button:hover{
        transform: scale(1);
    }

    .nav-button img{
        width: 2.463vh;
        height: 2.463vh;
    }
    
}