*{
    margin: 0;
    padding: 0;
}

nav{
    background-color: rgb(23, 24, 72);
    color: white;
    height: 75px;
    font-size: 27px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-family: 'Raleway', 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: 'Raleway', 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(202, 223, 227);
}

.gameInfo{
    padding: 0 34px;
    font-family: 'Raleway', sans-serif;
}

.imgBox img{
    width: 0;
    transition: width 1s ease-in-out;
}

/* borderRight */
.br-0{
    border-right: 0;
}
/* borderLeft */
.bl-0{
    border-left: 0;
}
/* borderTop */
.bt-0{
    border-top: 0;
}
/* borderBottom */
.bb-0{
    border-bottom: 0;
}

#reset{
    margin: 10px 23px;
    padding: 10px 14px;
    background-color: rgb(199, 225, 242);
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

.info{
    font-size: 25px;
}

.line{
    background-color: rgb(12, 12, 117);
    width: 0vw;
    height: 3px;
    position: absolute;
    transform: translate(10vw, 10vw);
    transition: width 1s ease-in-out;
}

@media screen and (max-width: 900px){
    .gameContainer{
        flex-wrap: wrap;
    }

    .gameInfo{
        margin-top: 34px;
    }

    .gameInfo h1{
        font-size: 1rem;
    }

    .info{
        font-size: 1rem;
    }

    .container{
        grid-template-columns: repeat(3, 20vw);
        grid-template-rows: repeat(3, 20vw);
    }

    #reset{
        padding: 7px 10px;
    }

}