* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

body img, body canvas, body > div {
    width: 40vw;
    aspect-ratio: 16/9;
    height: auto;
    position: relative;
}

body > div {
    display: inline-block;
}

canvas {
    border: 1px dashed black;
}

footer {
    font-family: monospace;
    padding: 1em;
    font-size: smaller;
    width: 100%;
    position: absolute;
    bottom: 0;
    border-top: 1px solid lightgrey;
    background-color: white;
}

label {
    position: absolute;
    left: calc(50% - 10rem);
    width: 10rem;
    top: 100%;
    padding: 0.5rem;
    background: lightgrey;
    text-align: center;
    border: 1px solid grey;
    border-radius: 0 0 8px 8px;
    border-top: 0;

}

.debug {
    position: absolute;
    width: fit-content;
    left: 0;
    top: 0;
    background-color: white;
    color: black;
    z-index: 1;
    padding: 5px;
}
