body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.question {
    font-size: 2em;
    margin-bottom: 20px;
    color: #555;
}

.result {
    font-size: 1.8em;
    margin-top: 20px;
    color: #333;
}

/* ボタンの基本スタイル */
button {
    font-size: 1.5em; /* フォントサイズを大きく */
    padding: 15px 30px; /* ボタンの内側の余白を増やす */
    width: 200px; /* ボタンの幅を広げる */
    height: 60px; /* ボタンの高さを増やす */
    margin: 10px; /* ボタン間の余白 */
    border: none;
    border-radius: 8px; /* ボタンの角を丸く */
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

/* ボタンのホバー効果 */
button:hover {
    opacity: 0.9;
}

/* 各ボタンの色 */
button:nth-child(1) {
    background-color: #ff9999; /* 明るい赤 */
    color: white;
}

button:nth-child(2) {
    background-color: #99ccff; /* 明るい青 */
    color: white;
}

button:nth-child(3) {
    background-color: #99ff99; /* 明るい緑 */
    color: white;
}

/* 次へボタンの色 */
#nextButton button {
    background-color: #ffcc66; /* 明るい黄色 */
    color: white;
    font-size: 1.5em;
    padding: 10px 20px;
    border-radius: 8px;
}

#nextButton button:hover {
    background-color: #ffe680; /* 薄い黄色 */
    transform: scale(1.1);
}

/* トップページに戻るボタン */
#returnButton button {
    background-color: #ffcc66; /* 明るい黄色 */
    color: white;
    font-size: 1.5em;
    padding: 10px 20px;
    border-radius: 8px;
}

#returnButton button:hover {
    background-color: #ffe680; /* 薄い黄色 */
    transform: scale(1.1);
}

/* ボタンのホバー効果 */
button:nth-child(1):hover {
    background-color: #ffcccc; /* 薄い赤 */
    transform: scale(1.1);
}

button:nth-child(2):hover {
    background-color: #cce5ff; /* 薄い青 */
    transform: scale(1.1);
}

button:nth-child(3):hover {
    background-color: #ccffcc; /* 薄い緑 */
    transform: scale(1.1);
}

.add-button {
    background-color: #ff9999; /* 赤系 */
    color: white;
}

.subtract-button {
    background-color: #99ccff; /* 青系 */
    color: white;
}

.multiply-button {
    background-color: #ffcc99; /* オレンジ系 */
    color: white;
}

.divide-button {
    background-color: #99ff99; /* 緑系 */
    color: white;
}

/* バッジアイコンのスタイル */
.badge-icon {
    width: 65px;
    height: 65px;
    margin-left: 10px;
    vertical-align: middle;
}

/* レベルボタンのコンテナ */
.level-button-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}