*, *::before, *::after{
    box-sizing: border-box;
    padding: 0;
    font-family: 0;
    font-family: 'Poppins', 'sans-serif';
}

.wrapper{
    max-width: 100vw;
    height: 100vh;
    background-image: url(Assets/bg-1.jpg);
    background-size: cover;
    display: grid;
    place-items: center ;
}

.game-info{
    color: white;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
     background-color: rgba(220, 21, 21, 0.288);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 3rem;
    text-align: center;
    height: 45px;
}

.tic-tac-toe{
    width: 90%;
    max-width: 20rem;
    background-color: rgba(220, 21, 21, 0.288);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 2rem;
    display: grid;
    grid-template-columns:  repeat(3,1fr);
    aspect-ratio: 1/1;


}

.box{
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    cursor: pointer;
    font-size: 3rem;
    color: white;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box1, .box2, .box4, .box5{
    border-right: 2px solid  #ffff;
    border-bottom: 2px solid  #ffff;
}

.box3, .box6{
    border-bottom: 2px solid  #ffff;
}

.box7, .box8{
     border-right: 2px solid #ffff;
}

.btn{
    /* color: rgba(97, 93, 93, 0.955); */
    height: 45px;
    color: white;
    cursor: pointer;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
     background-color: rgba(220, 21, 21, 0.288);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 2rem;
    cursor: pointer;
    display: none;
}

.btn.active{
    display: flex;
}

.win{
    background-color: rgba(0,255,0,0.3);
}