html {
    font-family: system-ui, sans-serif;
    color: white;
}

body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(180deg, #14264B 0%, #203A70 100%);
}

header {
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-weight: bold;
    font-size: 24px;
}

.current, .time, .clock {
    display: flex;
    align-items: center;
    white-space: nowrap;
    word-break: keep-all;
}

.current {
    justify-content: flex-start;
    margin-right: auto;
}

#answered {
    margin-right: 0.25em;
}

.clock {
    justify-content: center;
    margin: 0 auto;
}

.time {
    justify-content: flex-end;
    margin-left: auto;
}

.subtext {
    margin-top: 4px;
    font-size: 14px;
}

#total, #response-time {
    margin-right: 12px;
}

.progress-bar {
    height: 12px;
    width: 100%;
    background: #00000030;
}

#progress {
    height: 12px;
    width: 45%;
    background: #E9AB23;
    transition: width 0.4s ease;
}
