.menu-items ul {
    font-family: 'Roboto', sans-serif;
    display: flex;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ and Edge */
    user-select: none; /* Standard syntax */
}
.menu-items li {
    display: flex;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding-right: 10px;
    transition: .4s all;
}
.menu-items li:hover {
    color: rgba(255, 255, 255, 1);
    font-size: 19px;
}


.menu-items li::after {
    display: block;
    content: "|";
    padding-left: 10px;
    color: rgba(255, 255, 255, 0.3) !important;
    pointer-events: none;
}
.menu-items li:last-child::after {
    display: none;
}

.menu-items.header {
    display: grid;
    justify-content: end;
    align-items: center;
}

.menu-items.home {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10vh;
}
.menu-items.home ul{
    position: absolute;
    display: flex;
    justify-content: space-around;
    height: 30px;
    align-items: center;
    width: 80%;
    padding: 0 10vw;
}
.menu-items.home li::after {
    display: none;
}

#menuHeader {
    opacity: 1;
    pointer-events: all;
    transition: .3s all;
}
@media screen and (max-width: 530px){
    #menuHeader.on {
        opacity: 1;
        pointer-events: all;
    }

    #menuHeader {
        position: fixed;
        width: 100vw;
        height: 100vh;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.90);
        opacity: .8;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
    }

    #menuHeader ul {
        font-family: 'Roboto', sans-serif;
        display: grid;
        list-style-type: disc;
        margin-block-start: 0em;
        margin-block-end: 0em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        padding-inline-start: 0px;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 100vw;
        text-align: center;
        justify-content: center;
        align-items: center;
        grid-gap: 30px;
    }
    #menuHeader li::after {
        display: none;
    }
    #menuHeader li {
        transform: translateY(20vh);
        font-size: 30px;
        color: rgba(255, 255, 255, 0.81);
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: .6s all;
    }
    #menuHeader.on li {
        transform: translateY(0vh);
        opacity: 1;
    }
    
}