* {
    margin: 0px;
    padding: 0px;
}
h1 {
    color: rgb(215, 225, 244);
}
body {
    background-color: #5299D3;
    text-align: center;
}
.container {
    height: 70vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.box {
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: navajowhite;
    box-shadow: 0 0 1rem rgba(142, 127, 127, 0.3);
    font-size: 8vmin;
    color: rgb(197, 219, 239);
    background-color: #5E5C6C;
}
.game {
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
}
#reset {
    padding: .75rem;
    color: #6F7D8C;
    border-radius: 1rem;
    border: navajowhite;
    font-size: 1.2rem;
    background-color: #0B5563;
}
#newgame {
    height: 18vmin;
    width: 55vmin;
    border-radius: 1rem;
    border: navajowhite;
    box-shadow: 0 0 1rem rgba(142, 127, 127, 0.3);
    font-size: 6vmin;
    color: rgb(197, 219, 239);
    background-color: #0B5563;
    margin-bottom: 10px;
}
#winner {
    color: rgb(151, 182, 209);
    font-size: 50px;
    margin-bottom: 10px;
}
.hide {
    display: none;
}