*{
    padding: 0;
    margin: 0;
}

nav{
    background-color: rgb(52 8 52);
    color: white;
    height: 75px;
    font-size: 27px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

nav ul{
    list-style-type: none;
}

nav ul li{
    background-color: rgb(52 8 52);
}

.gamecontainer{
    display: flex;
    justify-content: center;
    padding-top: 50px;
    background: black;
    color: white;
    height: 41vw;
}

.container{
    display: grid;
    grid-template-rows: repeat(3, 10vw);
    grid-template-columns: repeat(3, 10vw);
    position: relative;
}

.box{
    border: 2px solid rgb(86, 15, 15);
    font-size: 8vw;
    display: flex;
    justify-content: center;
}
.box:hover{
    background-color: #161618;
}

.gameinfo{
    padding: 0 34px;
}

.imgbox img{
    width: 0;
    transition: width 0.5s ease-in-out
}

.bl-0{
    border-left: 0;
}
.br-0{
    border-right: 0;
}
.bt-0{
    border-top: 0;
}
.bb-0{
    border-bottom: 0;
}

.bcolor{
    border-color: #cd2c2c;
}

.line{
    background-color: #59ac05;
    width: 0;
    height: 3px;
    position: absolute;
    transition: width 0.5s ease-in-out;
}

.info{
    font-size: 23px;
    margin-right: 15px;
    
}

#reset{
    color: #cd2c2c;
    background: #1e1e1e;
    font-size: 17px;
    border-radius: 6px;
    width: 6vw;
    height: 30px;
}

.draw{
    width: 0;
    position: absolute;
    top: 209px;
    right: 387px;
    font-size: 216px;
    color: #94323b;
    transition: width 1s ease-in-out
}