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

.grid-container {
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 75vh;
    height: 75vh;
    padding: 5px;
}

.box {
    background-color: white;
    opacity: 1;
    flex: 1;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    border: 1px solid black;
}

.row {
    background-color: black;
    display: flex;
    flex: 1; 
}

input[type=number]{
    border: 2px solid black;
    border-radius: 5px;
    margin: 3px 0 3px 0;
    width: 100%;
}

.controls {
    border: 2px solid black;
    border-radius: 10px;
    background-color: lightgray;
    width: 10vw;
    height: fit-content;
    margin: 20px;
    padding: 10px;
}

button {
    background-color: white;
    border-radius: 5px;
    margin: 5px 0 5px 0;
}