:root {
    color-scheme: dark;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: #111;
    color: #eee;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

h1 {
    margin-top: 0;
}

.timer {
    font-size: 10rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.status {
    margin-top: 0.5rem;
    color: #aaa;
}

.pill {
    display: inline-block;
    padding: .2rem .5rem;
    border-radius: 999px;
    background: #222;
    border: 1px solid #333;
}

.running {
    color: #0f0;
}

.stopped {
    color: #f66;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

code {
    background: #222;
    padding: 0 .25rem;
    border-radius: 4px;
}