

body{

    text-align: center;
   background-image: linear-gradient(to bottom right, #008cff, #e100ff);

   
}


.container{

height: 85vh;
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: 1.5vmin;

}

.box{
    height: 18vmin;
    width: 18vmin;

    border-radius: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 1rem rgba(0,0,0,0.5);
    font-size: 45px;
    color: black;
    backdrop-filter: blur(10px);

}

#reset-button{

    padding: 0.5rem 1rem;
    color: white;
    background-color: black;
    border-radius: 10px;
    border: none;
    cursor: pointer;

}



#msg{

font-size: 5vmin;
color: rgb(255, 171, 69);

}

#new-btn{

    padding: 0.5rem 1rem;
    color: white;
    background-color: black;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}
.hide{

    display: none;
}


