#time {
    font-size: 6em;
    font-family: "Reddit Mono";
    font-weight: normal;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

#btnrow {
    display: flex;
    gap: 8px;
}

#btnrow button {
    width: 100%;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 0.6em;
    font-size: 1em;
    font-family: "IBM Plex Sans";
    transition: 0.3s;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

#start {
    border: #2e5e3e 1px solid;
    background-color: #3f9455;
    color: white;
}

#start:hover {
    background-color: oklch(from #3f9455 calc(l + 0.05) c h);
    transform: scale(1.02);
}

#start.active {
    border: #555 1px solid;
    background-color: #888;
    color: white;
}

#start.active:hover {
    background-color: oklch(from #888 calc(l + 0.05) c h);
    transform: scale(1.02);
}

#reset {
    border: #5e2038 1px solid;
    background-color: #d1523c;
    color: white;
}

#reset:hover {
    background-color: oklch(from #d1523c calc(l + 0.05) c h);
    transform: scale(1.02);
}

#--version {
    color: #aaa;
    font-family: "IBM Plex Sans";
    text-align: center;
    margin-top: 8px;
}

#timePanel {
    height: 100%;
    width: calc(100% - 350px);
    display: grid;
    place-items: center;
    background-image: radial-gradient(circle at center, #badde596 3px, transparent 3px);
    background-size: 20px 20px;
    background-color: #d1e6eb;
    animation: scroll 60s linear infinite;
}

#timePanel.full {
    width: 100%;
}

#timebox {
    width: 26.5em;
    padding: 40px;
    background-color: #d1e6eb;
    border-radius: 1em;
}

@keyframes scroll {
    from {
        background-position: 0 0;
    } to {
        background-position: -100% 100%;
    }
}