*{
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 3rem;
    color: #2F3E46;
    margin: 20px 0;
}


body{
    background-color: #84A98C;
      text-align:center;
}

.container{
  height: 70vh;
    display: flex;
     gap: 1vmin;
     justify-content: center;
     align-items: center;
}

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

.box {
    height: 18vmin;
    width: 18vmin;
    font-size: 8vmin;
    font-weight: bold;
    color: #b0413e;
    background-color: #CAD2C5;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.box:hover {
    background-color: #84A98C;
    transform: scale(1.05);
}


#rst-btn, #New-btn {
    background-color: #2F3E46;
    color: white;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

#rst-btn:hover, #New-btn:hover {
    background-color: #354F52;
}


#msg{
color:antiquewhite;
font-size: 5vh;

}

.msg-container {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}


.hide{
    display: none;
}