#mobile-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(35, 35, 35, .3);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999999998 ;
    display: none;
}

#mobile {
    width: 0px;
    height: 100%;
    background-color: var(--ya-web-palette-0);
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 999999999;
    display: none;
}

#mobile-menu {
    width: 100%;
    height: 100%;
    position: relative;
}

#mobile-close-button {
    position: absolute;
    top: 25px;
    right: 35px;
    color: rgb(255, 255, 255);
    font-size: 25px;
    font-family: "Sfp-Bold";
    cursor: pointer;
    transition-duration: 250ms;
}

#mobile-close-button:hover {
    transform: translate(-2px, -2px);
    text-shadow: 2px 2px 0px var(--ya-web-palette-2);
}

#mobile-navbar-nav {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 0px;
    margin-top: 100px;
    list-style: none;
    padding: 0px;
}

#mobile-navbar-nav li {
    width: 100%;
    height: fit-content;
    padding: 0px;
    margin: 0px;
    text-align: center;
    transition-duration: 250ms;
}

#mobile-navbar-nav li:hover {
    transform: scale(1.1);
}

#mobile-navbar-nav li:hover a {
    color: var(--ya-web-palette-2);
}

#mobile-navbar-nav li:active {
    transform: scale(0.9);
}

#mobile-navbar-nav li a {
    font-family: "Sfp-Regular";
    text-align: center;
    font-size: 25px;
    text-decoration: none;
    color: rgb(255, 255, 255);

}