body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8vh;
    overflow: hidden;
    font-family: monospace;
}

input[type="range"] {
    width: 80vw;
    max-width: 600px;
    cursor: pointer;
    opacity: 0.2;
    transition: opacity 0.3s;
}

input[type="range"]:hover,
input[type="range"]:focus {
    opacity: 1;
    outline: none;
}

time {
    writing-mode: vertical-lr;
    text-orientation: upright;
    white-space: pre;
    font-size: min(15vh, calc(90vw / (var(--cols, 2) * 1.5)));
    font-weight: bold;
    line-height: 1.5; 
    letter-spacing: 0.1em; 
}
