.ascii-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ascii-animation__art,
.ascii-animation__canvas {
    margin: 0;
    flex: none;
    font-size: 12px;
    transform-origin: center center;
    transform: scale(min(
        calc(95cqw / var(--art-width)),
        calc(95cqh / var(--art-height))
    ));
    user-select: none;
}

.ascii-animation__art {
    line-height: 14px;
    white-space: pre;
}

.ascii-animation__canvas {
    display: none;
    pointer-events: none;
}
