#containergeral {
    width: 100vw;
    height: 100vh;
    background-color:var(--colorBlack);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .ControlButtonMenus {
        margin-top: 4px;
        position: absolute;
        top: 0;
        width: 100vw;
        height: 5vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: var(--z-index-999);
    }

    .menu {
        width: 90vw;
        height: 90vh;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }  
        .btn-back-item {
            font-family: Arial;
            font-weight: bold;
            color: var(--colorCloseMenu);
            display: block;
            padding: 1vh;
            text-align: center;
            opacity: 0.8;
            text-shadow: 2px 2px 2px #3d3d3d;
        
        }

        .btn-back-item:hover {
            transition: 04ms;
            scale: 1.05;
            opacity: 1;
            color: var(--colorCloseMenuHover);
        }


        .menu__item {
            flex: 1;
            width: 95%;
            height: 95%;
            margin: 5px;
            padding: 0;
            align-items: center;
            justify-content: center;
            display: flex;
            border-radius: 10px;
            background-size: cover;
            background-position: center;
            transition: transform 0.3s ease-in-out;
            
        }

        .menu__item:hover {
            transform: scale(1.05);
        }

            .menu__link {
                background-color: rgba(0, 0, 0, 0.7);
                color: var(--colorWhite);
                letter-spacing: 2px;
                line-height: 30px;
                font-family: Arial, Helvetica, sans-serif;
                font-weight: bold;
                display: block;
                width: 100%;
                height: 100%;
                border-radius: 5px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                border-radius: 10px;
                font-size: 28px;
                transition: opacity 0.5s ease-in-out;
                opacity: 1;
            }

            .menu__link:hover {
                opacity: 0;

            }


            @media only screen and (max-width: 1000px) {

                .menu {
                    display: flex;
                    flex-direction: column !important;
                }
                .menu__item {
                    
                   
                  height: 20%;

                }
              }
             

              @media screen and (min-width: 1200px) {
                .menu__link {
                    font-size: 35px;
                    line-height: 40px;
                    letter-spacing: 5px;

                }
            }
              @media screen and (min-width: 1200px) {
                .btn-back-item {
                    font-size: 25px;
                }
            }
            
              @media screen and (min-width: 2000px) {
                .menu__link {
                    font-size: 50px;
                    line-height: 55px;
                    letter-spacing: 5px;            
                }

                .btn-back-item {
                    font-size: 25px;
                }
               
            }
            
              @media screen and (min-width: 2500px) {
     
                .btn-back-item {
                    font-size: 30px;
                }
               
            }
            