body {
    min-height: 100vh;
    display: flex;
    margin: 0;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(206, 202, 202);
    padding: 16px;
    height: 32px;
}

.title {
    font-size: 32px;
    font-weight: 300;
}

#redraw {
    font-size: 16px;
}

.content {
    display: block;
    max-width: 850px;
    flex: 1 0 auto;
   
    
}

.row {
    display: flex;
    flex: 1 1 0;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 0;
    min-width: 0;
}


.box {
    display: flex;
    flex: 1 1 0;
    border: 1px solid black;
    aspect-ratio: 1;
    min-height: 0;
    min-width: 0;
}

.white {background-color: white;}
.black {background-color: black;}
