* {
    margin: 0;
    padding: 0;
}


nav {
    width: 100%;
    height: 7vh;
    background: black;
    color: white;
}

nav ul {
    list-style-type: none;
    text-align: center;
    font-size: 20px;
    padding-top: 7px;
}

nav ul li {
    font-family: cursive;

}

.gameContainer {
    /* background:red; */
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 10vw);
    grid-template-rows: repeat(3, 10vw);
    font-family: cursive;
    position:relative;

}
.line{
    width:0;
    height:3px;          
    position:absolute;
    background-color: rgb(43, 40, 40);
    transition: width 1s ease-in-out;
}

.box {
    border: 2px solid black;
    /* border-bottom: none;
    border-top: none; */
    font-size: 5vw;
    color: rgb(67, 39, 19);
    text-align: center;
    padding-top: 9px;
    cursor: pointer;
}

.box:hover {
    background-color: rgb(235, 222, 207);
}

.gameInfo {
    /* border: 4px solid yellow; */
    margin-left: 60px;
    font-family: cursive;
    color: brown;
}
.gameInfo .info{
    text-align: center;
    font-size: 1.5rem;
    color: #6c0f0f;
    margin-top: 0.6rem;
}




.imgbox img{
    /* display:none; */
    width:0;
    transform: translate(14vw,2vw) rotate(0deg);
    transition: width 1s ease-in-out;
}

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

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

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

.bb-0{
    border-bottom: 0 ;
}

#reset{
    margin: 7px;
    border-radius: 7px;
    width: 5rem;
    padding: 0.3rem;
    background: #f7e1e1;
    /* text-align:center; */
    margin-left: 13.9rem;
    cursor:pointer;
}

@media screen and (max-width : 800px){
    .gameContainer{
        flex-wrap: wrap;
    }
    .gameInfo{
        margin-top:34px;
        margin-left: 7px;
    }

    .gameInfo h1{
        font-size: 1.1rem;
    }

    .gameInfo #reset{
        margin-left:7rem;

    }
    .container {
        grid-template-columns: repeat(3, 18vw);
        grid-template-rows: repeat(3, 15vw);
    }
}