@import url('https://fonts.googleapis.com/css2?family=Ubuntu&family=Varela+Round&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Ubuntu', sans-serif;
}
.body{
    background-color: white;
    color: black;
}
.dark{
    background-color: rgb(46, 43, 43);
    color: white;
}
.logo{
    display: flex;
    align-items: center;
}
.logo img{
    height: 40px;
    width: 40px;
    margin-right: 10px;
}
.Navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 100vw; */
    height: 60px;
    background-color: #938e8885;
}
.logo-section{
    width: 50%;
    margin: 0px 10px;
    font-size: 20px;
    font-weight: bold;
}
.form-check{
    margin: 0px 10px;
    /* width: 50%; */
    /* padding-left: 60px; */
}
.gameContainer{
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.container-box{
    display: grid;
    position: relative;
    grid-template-rows: repeat(3, 10vw);
    grid-template-columns: repeat(3, 10vw);
}
.line{
    background-color: rgb(134, 12, 12);
    width: 0vw;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    transition: width 0.5s ease-in-out;
}
.boxes{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    font-size: 10vw;
    cursor: pointer;
}
.boxes:hover{
    background-color: rgb(114, 80, 147);
}
.gameInfo{
    margin: 0px 70px;
    margin-top: 20px;
}
.info-box{
    display: flex;
    align-items: center;
    margin: 0px 10px;
}
.info{
    font-size: 25px;
}
.imgbox{
    margin: 15px;
}
.imgbox img{
    opacity: 0;
    border: 2px solid white;
    border-radius: 30px;
    width: 150px;
    height: 150px;
    transition: opacity 0.5s ease-in-out;
}
.bt-0{
    border-top: 0px;
}
.bb-0{
    border-bottom: 0px;
}
.bl-0{
    border-left: 0px;
}
.br-0{
    border-right: 0px;
}
#reset{
    margin: 2px 10px;
    padding: 6px 13px;
    border: 2px solid black;
    border-radius: 47px;
    outline: none;
    background-color: rgb(79, 79, 116);
    cursor: pointer;
    line-height: initial;
    font-weight: bold;
}

@media only screen and (max-width: 900px){
    .form-check{
        width: 50%;
        /* padding-left: 60px; */
    }
    .dAlign{
        float: right;
    }
    .gameContainer{
        flex-direction: column;
    }
    .container-box{
        margin: 0px auto;
    }
    .gameInfo{
        margin: 30px auto;
    }
    .info-box{
        flex-direction: column;
        justify-content: center;
    }
    #reset{
        margin-top: 5px;
    }
    .imgbox{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
