@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;

}

body{
    background: rgb(238,174,202);
background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    text-align: center;
}
h1{
  margin-top: .6rem;  
}
.container{
    margin: 1.2rem 0rem 1.5rem;
    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;
    box-shadow: 0 0 1rem rgba(0,0,0,0.1);
    font-size: 8vmin;
    color: #b0413e;
    background-color: #ffffc7;
}
.box:hover{
  box-shadow: 0 0 15px #3709df;
}
#reset-btn{
    padding: 1rem;
    font-size: 1rem;
    background-color: #191913; 
    color: #fff;
    border-radius: 1rem;
    border: none;
    cursor: pointer;  
   
 }
 #reset-btn:hover {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    animation-name: example;
    animation-duration: 0.25s;
    border-left: 8px solid rgb(118, 21, 21);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  }

#msg{
    color:#ffffc7;
    font-size: 6vmin;
}

.msg-container{
    height: 10vmin;
}
.hide{
    display: none;
}