body {
  font-family: "Arial", sans-serif;
  text-align: center;
  background-color: #f0f8ff;
  font-size: 20px;

  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

#game-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

#question {
  font-size: 2rem;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 問題表示の細かいレイアウト */
.q-label {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.q-problem {
  font-size: 2.5rem;
}

/* 入力ボックス */
input#answer {
  font-size: 2rem;
  width: 120px;
  height: 60px;
  text-align: center;
  margin-bottom: 20px;
  box-sizing: border-box;
}

/* ボタン全体 */
button {
  font-size: 1.5rem;
  padding: 10px 20px;
  margin: 10px auto; /* 左右中央揃えのためにautoに変更 */
  width: 250px;     /* ここを追加 */
  cursor: pointer;
  border-radius: 8px;
  border: none;
  background-color: #4CAF50;
  color: white;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

/* スコアとタイマー */
#score,
#timer {
  font-size: 1.3rem;
  margin-top: 10px;
}

#page-footer {
  text-align: center;
  margin-top: 20px;
  font-size: small;
  color: #666;
  /* 背景やパディングもお好みで */
  background-color: #f9f9f9;
  padding: 8px 0;
  border-top: 1px solid #ddd;
  position: fixed;
  bottom: 0;
  width: 100%;
}
