@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2&family=Spline+Sans&family=Ubuntu:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
}


nav{
    background-color: black;
    color: aquamarine;
    height: 40px;
    font-size: 20px;
display: flex;
align-items: center;
padding:0px 12px;
font-family: 'Spline Sans', sans-serif;
}

nav ul{
    list-style-type: none;
}
.gameContainer{

display: flex;
justify-content: center;
margin-top: 50px;
}
.container{
display: grid;
grid-template-rows: repeat(3, 10vw);
grid-template-columns: repeat(3, 10vw);
font-family: 'Ubuntu', sans-serif;
position: relative;
}
.box{
    border: 2px solid black;
    font-size: 8vw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box:hover{
 background-color: rgb(217, 233, 227);

}
.boxtext{
    color: rgb(2, 41, 43);
}
.gameInfo{
    padding: 0px 34px;
    font-family: 'Baloo Bhaina 2', cursive;
}
.gameInfo h1{
    color: rgb(9, 97, 109);
}
.imgbox img{
    width: 0;
    transition: width 1s ease-in-out;
}
.info{
    font-size: 25px;
    display: flex;
    text-align: center;
    color: rgb(8, 83, 83);
    font-family: 'serif;
}
.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: #f3e7f9;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Baloo Bhaina 2', cursive;
    font-size: 15px;
    font-weight: bolder;
    
    }
#reset:hover{
    background-color: rgb(27, 138, 138);
    color: beige;
 
}
.line{
    background-color: black;
    height: 3px;
    width: 2px;
    position: absolute;
      background-color: chocolate;
    transition: width 1s ease-in-out;
}

@media screen and (max-width: 950px)
{
    .gameContainer{
        flex-wrap: wrap;
    }
    .gameInfo{
        margin-top: 34px;
    }
    .gameInfo h1{
        font-size: 1.5rem;
    }
    .container { 
        grid-template-rows: repeat(3, 20vw);
        grid-template-columns: repeat(3, 20vw);
    }
    
}
