@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Roboto+Mono&family=Rowdies&family=Russo+One&display=swap');
*{
    margin: 0;
    padding: 0;
}
nav{
    background-color:rgb(26, 51, 114);
    color:white;
    height: 65px;
    font-size: 27px;
    display:flex;
    align-items: center;
    padding: 0 12px;
    font-family: 'Abril Fatface', cursive;
    font-family: 'Rowdies', cursive;
    font-family: 'Russo One', sans-serif;
}
nav ul{
    list-style-type: none;
}
.gameContainer{
    display:flex;
    justify-content: center;
    margin-top:50px;
    color:#32496c;

}
.container{
    display: grid;
    grid-template-rows: repeat(3, 10vw);
    grid-template-columns: repeat(3, 10vw);
    font-family: 'Russo One', sans-serif;
    position: relative;
}
.box{
    border:2px solid rgb(155, 203, 239);
    font-size:8vw;
    cursor: pointer;
    display:flex;
    justify-content: center;
    align-items:center
}
.box:hover{
    background-color: rgb(193, 222, 255);
}
.info{
    font-size: 22px;
}
.gameInfo{
    padding: 0 34px;
    font-family: 'Roboto Mono', monospace;
}
.gameInfo h1{
    font-size: 2.5rem;
}
.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: #e1f7fd;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    font-weight: bolder;
}
.line{
    background-color: black;
    width: 0;
    height: 3px ;
    position: absolute;
    background-color: rgb(226, 196, 255);
    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);

    }
}