@import url('https://fonts.googleapis.com/css2?family=Edu+QLD+Beginner&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Edu QLD Beginner', cursive;

}
body{
    /* background-image: url('paper.jpg'); */
    background-size: cover;
    background-color: rgb(246, 242, 235);

}


nav{
    background-color: purple;
    /* background-color: #371B58; */
    color: white;
    /* height: 80px; */
    display: flex;
    font-style: 27px;
    align-items: center;
    padding: 0 12px;
    padding: 20px;
    font-size: 30px;
    /* text-align: center; */
}

ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: white;
}
.gameContainer{
    /* background-color: orange; */
    display: flex;
    margin: auto;
    justify-content: center;
    margin-top: 50px;
    position: relative;

    
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;    
    

}
.container{
    display: grid;
    grid-template-rows: repeat(3,10vw);
    grid-template-columns: repeat(3,10vw);
}
@media (max-width: 767px) {
    .container{
        display: grid;
        grid-template-rows: repeat(3,20vw);
        grid-template-columns: repeat(3,20vw);
    }
}
.box{
    border: 2px solid black;
    font-size: 8vw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

}
.boxtext{
    transition-delay: 1s;
    color: rgb(8, 159, 8);
}
.box:hover{
    /* background-color: rgb(248, 223, 248); */
    background-image: radial-gradient(circle,rgb(255, 250, 202), rgb(246, 242, 235));
}
.gameInfo{
    padding: 0 34px;
    text-align: center;
}

.br-0{
    border-right: 0;

}
.bl-0{
    border-left: 0;
}
.bt-0{
    border-top: 0;
}
.bb-0{
    border-bottom: 0;
}
#reset{
    padding: 15px;
    background-color: purple;
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    margin-top: 50px;
    transition: .4s all ease-in;

}
#reset:hover{
    transform: rotate(10deg) scale(1.2);
    margin: 55px;
}

.line{
    background-color: black;
    height: 4px;
    width: 0;
    position: absolute;
    /* transform: rotate(90deg); */
    /* transform: translate(0vw,15vw) rotate(90deg); */
    transition: width .5s ease-in-out;
    background-color: rgb(4, 1, 12);
    

}
