*{
    margin: 0;
    padding: 0;
}

nav{
    background-color: black;
    color: whitesmoke;
    height: 10vh;
    /* justify-content: center; */
    font-size: 30px;
    display: flex;
    align-items: center;

}

nav ul{
    list-style: none;
    

    
}
.gamecontainer{
    /* background-color: pink; */
    margin: 10px;
    display: flex;
    justify-content: center;



}
.Container{
    display: grid;
    grid-template-columns: repeat(3,10vw);
    grid-template-rows: repeat(3,10vw);
    position: relative;
}
.gameinfor{
    font-size: 2.5rem;
}
.imgbox{
    display: none;
    width: 0px;
    transition: width 1s  ease-in-out;
}
.box{
    border: 2px solid  black;
    font-size: 8vw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box:hover{
    background-color: rgb(213, 217, 220)
}
.info{
    font-size: 20px;
}
.gameinfor{
    padding: 0 35px;
}


.br-0{
    border-right: 0;
}
.bl-0{
    border-left: 0;

}
.bt-0{
    border-top: 0;
}
.bb-0{
    border-bottom: 0;
}
#reset{
    margin: 0 23px ;
    padding: 1px 18px;
    background: rgb(234, 204, 236);
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Baloo Bhaina 2';
    font-size: 15px;
    font-weight: bolder;

}
.line{
    background-color: black;
    height: 3px;
    width: 0;
    position: absolute;
    /* transform: rotate(); */
    transition: width 1s ease-in-out;


@media screen and (max-width: 800px) {
    .gamecontainer{
       flex-wrap: wrap;
    }
    .gameinfor{
        margin-top: 34px;
    }
    .gameinfor h2{
        font-size: 1.5rem;
    }
    .Container{
        /* display: grid; */
        grid-template-rows: repeat(3, 20vw);
        grid-template-columns: repeat(3,20vw);
    }
    
}
}

