form {
  font-size: 2em; /* ラベルの文字サイズを大きく */
}

body {
  background-color: #b7ec7a;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;     /* 横方向の中央揃え */
  min-height: 100vh;       /* 画面の高さに合わせる */
  font-family: sans-serif;
  padding: 20px;
}

input {
  height: 40px;
  font-size: 1.2em;
  width: 150px;
  text-align: center;       /* 入力文字を中央揃え */
  margin-bottom: 15px;
  padding: 5px 10px;
  box-sizing: border-box;
}

button {
  padding: 10px 15px;
  font-size: 1.2em;
  background-color: red;
  color: #fdffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.9);
  transition: all 0.1s ease-in-out;
  text-align: center;       /* ボタンの文字を中央揃え */
}
/* 押したときのへこみ効果 */
button:active {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.9);
  transform: translateY(2px);
  background-color: blue;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}