@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Itim&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav{
    background-color: black;
    color: white;
    height: 60px;
    font-size: 2em;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-family: "Roboto", sans-serif;

}
nav ul{
    list-style-type: none;
}

.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;
    position: relative;
}

.box{
    border: 1px solid black;
    font-size: 9vw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box:hover{
    background-color: #f5f2f2;
}
.gameInfo{
    padding: 0 34px;
    font-family: "Itim", cursive;
}
.imageBox img{
    width: 0;
    transition: width 1s ease-in-out;
}
.info{
    font-size: 2em;
}
.br-0{
    border-right: 0;
}
.bl-0{
    border-left: 0;
}

.bt-0{
    border-top: 0;
}

.bb-0{
    border-bottom: 0;
}
#reset{
    width: 20%;
    font-size: larger;
    margin: 0 23px;
    padding: 6px 0;
    border: 2px solid grey;
    border-radius: 6px;
    cursor: pointer;
}
.line{
    background-color: black;
    width: 0;
    height: 2px;
    position: absolute;
    left: 10%;
}
@media screen and (max-width: 950px)
{
.gameContainer{
    flex-wrap: wrap;
}
.gameInfo{
    margin-top: 34px;
}
.gameInfo h1{
    font-size: 1.3rem;
}
.container{
    display: grid;
    grid-template-columns: repeat(3,20vw);
    grid-template-rows: repeat(3,20vw);
}
#reset{
    width: 35%;
}
}