#canvas1 {
    width: 100%;
    height: auto;
    touch-action: none;
    object-fit: contain;
    padding-bottom: 2%;

    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#canvas2 {
    width: auto;
    height: auto;
    touch-action: none;
    object-fit: contain;
    display: none;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#gui_container {
    width: 100%;
    height: auto;
    border: 0px solid var(--canvas_border_0);

    display: flex;
}

.options {
    width: 50%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;

    border: 0px solid var(--canvas_border_0);
}

#option2 {
    justify-content: end !important;
}

.option {
    box-sizing: border-box; /* include the padding and border in an element's total width and height */
    width: 30%;
    border: 1px solid var(--canvas_border_0);
    aspect-ratio: 1 / 1;

    display: flex;
    justify-content: center; /* align item horizontally */
    align-items: center; /* align item vertically */
    background-color: #6c869e;
}

.toolImg {
    width: 100%;

    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#sizeContainer {
    flex-direction: column;
}

#sizeSelection {
    width: 80%;
    font: 10vw;
    font-weight: bold;
    background-color: #6c869e;
    border-color: black;
    border-width: 3px;
    aspect-ratio: 1 / 1;
    text-align-last:center;
}

.option:hover, #colorPicker:hover {
    text-decoration: none;
    background-color: #96a6b6;
}

#colorPicker, #penSize {
    width: 100%;
    height: 100%;
}

#colorPicker {
    background-color: #6c869e;
    border: 0px solid var(--canvas_border_0);
}

#form {
    width: 60%;

    display: flex;
    flex-direction: column;
}

.formOption {
    width: 80%;
}

a {
    color: #000;
    text-decoration: none;
}

#aGallery {
    font-size: 0.5em;
    font-weight: bold;
}