
@import url("./common.css");

#canvas {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: black;
}

.error {
    color: red;
}

#details {
    display: flex;
}

#controls {
    display: grid;
    flex-grow: 1;
    grid-gap: 0.4cm;
    grid-auto-flow: column;
    grid-template-columns: auto auto 1fr auto;
    grid-template-rows: auto auto auto;
}

input[type = "number"] {
    width: 3em;
}

#links {
    display: flex;
    flex-direction: column;
}
