#menu {
    width: 100vw;
    height: 100vh;

    background-color: var(--secondary);
    color: #ffffff;
    position: fixed;
    z-index: 2900;
    right: -100vw;
    transition: all 0.6s ease;
}
#menu.slideIn {
    right: 0;
}
#menu nav {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;

    text-align: center;
    color: var(--primary);
}

#menu ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


@media screen and (min-width:1000px) {
    #menu {
       display: flex;
       justify-content: flex-end;
    }
    #menu nav {
        width: 35%;
        align-items: flex-start;
        text-align: left;
    }
}

@media screen and (min-width:1000px) and (max-width:1024px) {
    #menu nav {
        width: 45%;
        
    }
}

#menu nav p {
    font-family: "Raleway-Light";
    line-height: 24px;
}

#menu a {
    font-size: 48px;
    font-family: "Opaline";
    text-decoration: none;
    color: var(--primary);
    border-left: 1px solid #58647000;
    padding-left: 0;
    transition: all 0.6s ease-in-out;
}
#menu a.barAppear {
    border-left: 2px solid var(--primary);
    padding-left: 10px;
}