*{
    margin: 0px;
    padding: 0px;
}
body{
    background-color: darkslategrey;
    text-align: center;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.container{
    margin-top: 3vh;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.board{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5vmin;
    align-items: center;
}
.box{
    font-size: 10vmin;
    height: 18vmin;
    width: 18vmin;
    border-radius: 40px;
    border: none;
    box-shadow:0 0 1rem rgba(0, 0, 0, 0.5);
}
#reset{
    padding: 1rem;
    background-color: #333;
    font-size: 15px;
    border: 0px;
    border-radius: 10px;
}