#menu{
    position: fixed;
    right: 40px;
    top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    z-index: 100;
}
.ballOfMenu{
    position: relative;
    width: 14px;
    height: 14px;
}
.ballOfMenuB{
    height: 0;
}
.ballOfMenuInner{
    width: 10px;
    height: 10px;
    margin: 2px;
    background-color: rgb(25, 25, 25);
}
.ballOfMenuInnerAfter{
    position: absolute;
    background-color: rgb(25, 25, 25);
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
}

#menuTexts{
    position: absolute;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
#menuTexts a{
    white-space: nowrap;
    width: 0%;
    overflow: hidden;
    will-change: width;
    margin: 3px 0 3px 15px;
}
#menuTexts *{
    font-size: 12px;
    font-weight: 800;
    white-space: -0.5px;
    color: rgb(115, 115, 115);

}


@media screen and (max-width:480px) {
    #menu{
        right: 15px;
        top: 20px;
    }
}