* {
    margin: 0;
    padding: 0;
}

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

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

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

.box {
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    font-size: 7vmin;
    background-color: #90ee90;
    color: black;
}

#reset-button {
    border-radius: 1rem;
    border: none;
    background-color: #000;
    color: #fff;
    padding: 1rem;
    font-size: 1.25rem;
}

#new-button {
    margin-top: 4%;
    border-radius: 1rem;
    border: none;
    background-color: #000;
    color: #fff;
    padding: 1rem;
    font-size: 1.25rem;
}

#msg {
    color: #fff;
    font-size: 4vmin;
}

.msg-container {
    height: 5vmin;
    border-radius: 1rem;
    border: none;
    background-color: #000;
    color: #fff;
    margin-left: 3rem;
    margin-right: 3rem;
    margin-top: 1.5rem;
}
d
.hide {
    display: none;
}