body {
    margin: 60px auto;
    width: 70%;
}

/* Advertise dark color scheme and set base colors */
:root { color-scheme: dark; }
html, body { background: #000; color: #fff; }
nav ul, footer ul {
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
    padding: 0px;
    list-style: none;
    font-weight: bold;
}
nav ul li, footer ul li {
    display: inline;
    margin-right: 20px;
}
a {
    text-decoration: none;
    color: #999;
}
a:hover {
    text-decoration: underline;
}
h1 {
    font-size: 3em;
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
}
p {
    font-size: 1.5em;
    line-height: 1.4em;
    color: #333;
}
footer {
    border-top: 1px solid #d5d5d5;
    font-size: .8em;
}

ul.posts { 
    margin: 20px auto 40px; 
    font-size: 1.5em;
}

ul.posts li {
    list-style: none;
}

/* Split-time clocks */
.clocks {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 12px 0 24px;
}
.clock {
    background: #111;
    border: 1px solid #222;
    padding: 12px 16px;
    border-radius: 12px;
    min-width: 160px;
    text-align: center;
}
.clock .time {
    font-size: 2em;
    line-height: 1.1;
}
.clock .label {
    margin-top: 6px;
    color: #bbb;
    letter-spacing: 0.02em;
}

/* Analog dial styles */
.dial { width: 140px; height: 140px; display: block; margin: 0 auto; }
.dial .face { fill: #0a0a0a; stroke: #222; stroke-width: 2px; }
.dial .ticks circle { stroke: #222; stroke-width: 1px; }
.dial .hand line { stroke-linecap: round; transform-origin: 50px 50px; }
.dial .hand.hour line { stroke: #e6e6e6; stroke-width: 4px; }
.dial .hand.minute line { stroke: #e6e6e6; stroke-width: 3px; }
.dial .hand.second line { stroke: #e33; stroke-width: 1.6px; }
.dial .cap { fill: #e6e6e6; }

/* Screen-reader only text */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 1px, 1px); white-space: nowrap; border: 0; }

@media (max-width: 520px) {
    .clocks { flex-direction: column; align-items: center; }
    .clock { width: 100%; max-width: 320px; }
}
