.imgSlogan {
    background: #0076a9;
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    padding: 50px;
    border-radius: 10px;
    background-image: url("https://huy-devfa.xyz/images/accGameGiaRed.png");
    background-size: cover;
}

.imgSlogan h4{
    font-family: monospace;
    text-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    text-align: center;
    color: black;
    font-size: 14px;
    animation: typing 4s steps(30) infinite alternate-reverse;
}

@keyframes typing{
    from{
        width: 0px;
    }
}

@media only screen and (min-width:1024px) {
    .imgSlogan h4{
        font-size: 30px;
    }
}

/*menu Tai Khoan game*/

h2{
    width: 100%;
    text-align: center;
}
.divLoaiTaiKhoan{
    width: 100%; 
    display: grid;
    grid-template-areas: 
    'menuGameMot menuGameHai'
    'menuGameBa menuGameBon'
    ;
    gap: 5px;
}
.divLoaiTaiKhoan div{
    border: 1px solid black;
    width: 90%;
    margin: 10px;
}

.divMenuGame0{
    grid-area: menuGameMot;
}
.divMenuGame1{
    grid-area: menuGameHai;
}
.divMenuGame2{
    grid-area: menuGameBa;
}
.divMenuGame3{
    grid-area: menuGameBon;
}


.divLoaiTaiKhoan div a img{
    width: 100%;
    height: 120px;
    object-fit: cover;
}