*{
    margin: 0;
    padding: 0;
}
h1{
    font-size: 40px;
    mix-blend-mode: darken;
    text-shadow: white;
    margin-top: 20px;
}
body{
    background: linear-gradient(to right, #22577A, #38A3A5, #57CC99, #80ED99, #C7F9CC);
    text-align: center;
    
}
.container{
    height: 70vh;
    display: grid;
    align-items: center;
    justify-content: center;
}

.game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
}

.box{
    height: 18vh;
    width: 18vmin;
    border: none ;
    border-radius: 5px;
    box-shadow: 10px 10px 18px rgba(0, 0, 0, 0.1);
    font-size: 8vmin;
    background-color: aliceblue;
    color: rgb(234, 11, 11);
}
#reset {
    background-color: #f6fff8;
    height: 50px;
    width: 100px;
    border-radius: 5px;
    border: none;
    font-size: medium;
}
#new{
    background-color: #f6fff8;
    height: 50px;
    width: 100px;
    border-radius: 5px;
    border: none;
    font-size: medium;
    margin-top: 20px;
}
.message{
    height: 80vmin;  
    margin-top: 20px;
}
#message1{
    color: #f6fff8;
    font-size: 5vmin;
    margin-top: 20px;
}
.hide{
    display: none;
}