html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: black;
    color: white;
    font-family: monospace;
    overflow: hidden;
}

main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    box-sizing: border-box;
}

#canvas-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 85vh;
    width: 100%;
}

canvas {
    display: block;
    height: auto;
    width: auto;
    max-width: 90vw;
    max-height: 70vh;
}

#info-text {
    margin-top: 1.2rem;
    font-size: 1rem;
    opacity: 0.75;
    text-align: center;
}