* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body {
    background-color: plum;
    text-align: center;
}

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

}

.game {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;


}

.box {
    /* padding: 50px; */
    margin: 3px;
    width: 18vmin;
    height: 18vmin;
    border-radius: 1rem;
    color: black;
    border-color: blueviolet;
    gap: 1.5;
    font-size: 8vmin;
}

#reset {
    border-color: blueviolet;
    padding: 1rem;
    border-radius: 1rem;
    color: black;
}

#newbutton {
    border-color: blueviolet;
    padding: 1rem;
    border-radius: 1rem;
    color: black;
}

.msgcontainer {
    color: black;
}

.hide {
    display: none;
}