.mobile-nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    border: none;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
}

.nav-close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 2rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.nav-link {
    display: block;
    padding: 2rem;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    text-align: center;

    @media only screen and (max-height: 600px) {
        font-size: 1rem;
        padding: 1rem;
    }
}

.nav-social {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 2rem;
}