*{
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(167, 239, 239);
    text-align: center ;
}
.container{
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5vmin;
}


.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 3rem black;
    font-size: 10vmin;
    color: rgb(80, 185, 214);
    background: linear-gradient(to right,rgb(239, 24, 239),rgb(70, 70, 220));
    text-shadow: 0 0 1rem ;
}
#Result{
    font-size: 5vmin;
    font-family: cursive;
    color: rgb(182, 65, 182);
}
#turn{
    font-size: 8vmin;
    color:rgb(163, 211, 79)
}

#reset-btn{
    padding: 1rem;
    font-size: 1.2rem;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgb(155, 13, 187);
    background: linear-gradient(to right, rgb(0, 0, 0), rgb(99, 92, 92));
    color: rgb(195, 192, 192);
    border: none;
}