@import url('https://fonts.googleapis.com/css2?family=Rubik+Bubbles&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2&display=swap');
*{
    margin: 0;
    padding: 0;
}
nav{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    height: 92px;
    font-size: 27px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-family: 'Rubik Bubbles', cursive;
    
}
nav ul{
    list-style-type:none ;
}

nav ul .developer{
    text-align:right;
}

.abou{

    margin:15px;
    font-size: 18px;

    cursor: pointer;
    
}

.gameContainer{
   
    display: flex;
    justify-content: center;
    margin-top:50px ;



}

.container{
    display: grid;
    grid-template-columns: repeat(3,10vw);
    grid-template-rows: repeat(3,10vw);
    font-family: 'Roboto', sans-serif;
    


}


.box{
    border: 2px solid black;
    font-size: 8vw;
    cursor: pointer;
   
    display: flex;
    justify-content: center;
    align-items: center;
}

.box:hover{
    background-color: rgb(150, 232, 27);
}

.info{
    font-size: 25px;
}

.gameInfo{
    padding: 0 34px;
    font-family: 'Baloo Bhaina 2', cursive;

}

.imgbox img{
    width : 0;
    transition: width 1s ease-in-out;
}

.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-color: rgb(239, 198, 239);
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Baloo Bhaina 2';
    font-size: 15px;
    font-weight: bolder;

}
.line{
    background-color: black;
    height: 3px;
    width: 00vw;
    position: absolute;
    background-color: green;
    transition: width 1s ease-in-out;
}

@media  only screen and (max-width : 800px) {

    .gameContainer{
        flex-wrap: wrap;
    }
    .gameInfo{
        margin-top: 34px;
    }
        .container {
            display: grid;
            grid-template-columns: repeat(3, 25vw);
            grid-template-rows: repeat(3, 25vw);
            font-family: 'Roboto', sans-serif;}

    
}