*{
    color: azure;
    font-family: sans-serif;
    transition: 0.2s ease-in-out;
    user-select: none;
}
.space {
    margin-top: 15px;
    margin-bottom: 5px;
    content:'';
}
.align{
    display: flex;
    justify-content: center;
    align-items: center;
}
body {
    background-color: #131313;
    margin: 0;
    padding: 0;
    width: 100vw;
    text-align: center;
    padding-top: 5vh;
}
.turn-container{
    width: 170px;
    height: 80px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    position: relative;
}
.turn-container h3{
    grid-column-start: 1;
    grid-column-end: 3;
}
.turn-container .turn-box{
    border: 2px dashed rgba(97, 68, 13, 0.7);
    font-size: 1.6rem;
    font-weight: 600;
}
.turn-container .turn-box:nth-child(even){
    border-right: none;
}
.bg{
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 85px;
    height: 30px;
    background-color:rgba(97, 68, 13, 0.7);
    z-index: -1;
}

.main-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    height: 250px;
    width: 250px;
    margin: 30px auto;
    border:3px dashed rgba(97, 68, 13, 0.7);
}
.box{
    font-size: 2rem;
    font-weight: 600;
    border: 2px solid rgba(97,70, 15, 0.9);

}
.box:hover{
    background-color: rgba(97, 68, 13, 0.7);
}
#play-again{
    background-color: #976913ab;
    ;
    color: #131313;
    font-weight: 700;
    padding: 10px 25px;
    border: none;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}
#play-again:hover{
    padding: 10px 25px;
    border: 4px dashed rgba(97, 68, 13, 0.7);
    border-radius: 0;
    background-color: transparent;
    color: azure;
}