* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #548687;
    text-align: center;
}

.container {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    background-color: rgb(255, 179, 0);
    color: white;
    padding: 15px;
}

.game {
    height: 325px;
    width: 348px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
}

.box {
    height: 100px;
    width: 100px;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
    font-size: 8vmin;
    color: #b0413e;
    background-color: #ffffc7;
}

#reset-btn {
    padding: 13px;
    font-size: 1.25rem;
    background-color: #191913;
    color: white;
    border-radius: 1rem;
    border: none;
    width: 315px;
}

#new-btn {
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #191913;
    color: white;
    border-radius: 1rem;
    border: none;
}

#msg {
    color: #ffffc7;
    font-size: 5vmin;
}

.msg-container {
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.hide {
    display: none;
}

@media (max-width: 600px) {
    h1 {
        padding: 10px;
    }
    .game {
        height: 275px;
        width: 268px;
    }
    .box {
        height: 80px;
        width: 80px;
    }
    .game .box {
        font-size: 40px;
    }
    #reset-btn {
        width: 246px;
    }
    .msg-container {
        height: 100vh;
    }
    #msg {
        font-size: 24px;
    }
}