* {
    margin: 0;
    padding: 0;
}

body{
    background-color: #00b4d8;
    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: 1.5vmin;
}

.box {
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgba(0,0,0,0.8);
    font-size: 8vmin;
    color: whitesmoke;
    background-color:rgb(43, 41, 41);

}
#reset-btn{
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #191913;
    color: #fff;
    border: none;
    border-radius: 1rem;
}
#New-btn {
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #191913;
    color: #fff;
    border: none;
    border-radius: 1rem;

}

#msg {
  color: maroon;
  font-size: 10vmin;
  font-style: italic; 
  font-weight: 900; 
}
.msg-container {
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
    
}

.hide {
     display: none; 
}
@media (max-width: 600px) {
    .container {
        height: auto;
        padding: 1rem;
    }

    .game {
        width: 90vmin;
        height: 90vmin;
        gap: 2vmin;
    }

    .box {
        height: 28vmin;
        width: 28vmin;
        font-size: 10vmin;
    }

    #msg {
        font-size: 8vmin;
        text-align: center;
    }

    #reset-btn, #New-btn {
        width: 80%;
        margin: 1rem auto;
        font-size: 1rem;
    }

    h1 {
        font-size: 1.8rem;
        margin: 1rem 0;
    }
}

