h1 {
  margin: auto;
  text-align: center;
  padding: 2px;
  font-size: 30px;
  border: solid 5px orange;
}

button {
  padding: 7px;
  margin: 5px;
  border-radius: 0.5rem;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* テキストが表示される領域 */
.wrap {
  margin-top: 10px;
  padding: 40px 40px;
  background-color: #666;
  font-weight: bold;
  color: #fff;
  font-size: 5em;
  text-align: center;
}

/* 正しくタイプされた場合のテキスト */
.typed {
  color: lightgreen;
}

/* ミスタイプの場合の背景 */
.mistyped {
  background-color: orangered;
}

/* ゲームの残り秒数が表示されるタイマーの領域 */
.count {
  margin: 0;
  font-weight: bold;
  color: #666;
  font-size: 5em;
  text-align: center;
}

progress {
  width: 100%;
  height: 40px;
  color: blue;
}
