body {
    font-family: 'Merriweather', serif;
    /* 自然なアースカラーのグラデーション背景 */
    background: linear-gradient(135deg, #a8d5ba 0%, #f0e6cc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

.quiz-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

h1 {
    font-size: 50px;
    margin-bottom: 25px;
    /* オリーブグリーンで農業らしさを演出 */
    color: #556b2f;
}

.question {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.option-block {
    margin-bottom: 15px;
}

.option-block input[type="radio"] {
    margin-right: 10px;
}

.submit-btn {
    /* オリーブグリーンからブラウンへのグラデーション */
    background: linear-gradient(135deg, #6b8e23 0%, #a0522d 100%);
    color: #fff;
    border: none;
    padding: 12px 24px;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
    margin-top: 20px;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #a0522d 0%, #6b8e23 100%);
}

.feedback {
    font-size: 18px;
    margin-top: 25px;
    color: #556b2f;
}