body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 2em;
    color: #333;
}

h2 {
    font-size: 1.5em;
    color: #007bff;
    margin-top: 20px;
}

h3 {
    font-size: 1.2em;
    color: #555;
    margin-top: 10px;
}

section {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

ol, ul {
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

p {
    margin-bottom: 10px;
}

.clock-container {
    width: 300px;
    height: 300px;
    margin: 20px auto;
    margin-bottom: 20px; /* 追加 */
}

.clock-container.hidden {
    display: none; /* 追加 */
}

.quiz-container {
    text-align: center;
}

.quiz-input {
    width: 80px;
    height: 40px;
    font-size: 20px;
    margin: 10px;
}

.quiz-button {
    width: 100px;
    height: 50px;
    font-size: 16px;
    margin: 10px;
}

.hidden {
    display: none;
}

#quiz-question {
    font-size: 24px; /* ← ここで文字の大きさを調整します */
    margin-bottom: 10px; /* 既存のスタイルに合わせて追加 */
}

#quiz-result {
    margin-top: 10px;
    font-weight: bold;
    font-size: 24px; /* 例 */
    color: red; /* ← 赤い文字にするための追加 */
}

#correct-streak {
    margin-top: 10px;
    font-weight: bold;
    font-size: 24px; /* 例 */
}