body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    padding: 10px;
    height: 100vh;
    flex: 1;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1px; /*Might be changed*/
    
}

.pixel-row {
    flex: 1;

    display: flex;
    justify-content: space-between;
    gap: 1px;
}

.pixel-div {
    flex: 1;
    background-color: white;
    box-shadow: rgba(0,0,0,0.15) 1.95px 1.95px 2.6px;
    /* TODO: divs should have equal sides */
}

button {
    flex-shrink: 0;
    margin: auto;
}