.modal-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.91);
    opacity: 0;
    transition: opacity .25s ease;
    z-index: 9999;
    color: rgb(31, 29, 29);

}

.menuBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 20px;
    border-radius: 16px;
    width: 85%;
    max-width: 320px;
    text-align: center;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
}

.menuBox button{
    padding: 15px;
    width: 90%;
    border-radius: 7px;
    border: none;
    background-color: rgb(179, 173, 173);
    color: rgb(31, 29, 29);
}