*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins' , 'sans-serif';
}

.wrapper{
    height: 100vh;
    width: 100vw;
    background-image: url(./assets/gradient-bg.jpg);
    display: grid;
    place-items: center;
    overflow-y: hidden;
    overflow-x: hidden;
    background-size: cover;
    background-position: center;
}

.game-info{
    color: white;
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255,255,255,0.15);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.5rem 3rem;
    text-align: center;
}

.playArea{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    width: 90%;
    max-width: 20rem;
    background-color: rgba(255,255,255,0.15);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 2rem;
    aspect-ratio: 1/1;
}

.box{
    position: relative;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
}
.box1{
    border-right: 1px solid white;
    border-bottom: 1px solid white;
}
.box2{
    border-right: 1px solid white;
    border-bottom: 1px solid white;
}
.box3{
    border-bottom: 1px solid white;
}
.box4{
    border-right: 1px solid white;
    border-bottom: 1px solid white;
}

.box5{
    border-right: 1px solid white;
    border-bottom: 1px solid white;
}
.box6{
    border-bottom: 1px solid white;
}
.box7{
    border-right: 1px solid white;
}
.box8{
    border-right: 1px solid white;
}

.btn{
    position: absolute;
    color: white;
    bottom: 3rem;
    background-color: rgba(255,255,255,0.15);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    display: none;
    padding: 0.5rem ;
}
.btn.active{
    display: flex;
}
.win{
    background-color: rgba(0,255,0,0.3);
}
