@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;;
  color: #0550ae;
  background-color: #f6f8fa;
}

html, body {
  height: 100%;
}

#container {
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.content-wrapper {
  width: 100%;
}

.kanji-content {
  font-size: 75px;
  text-align: center;
  margin-top: 50px;
}

.kana-wrapper {
  display: none;
  text-align: center;
  margin-top: 25px;
  font-size: 25px;
}

.btn-wrapper {
  text-align: center;
}

.btn {
  font-size: 14px;
  border: none;
  color: white;
  background-color: #0550ae;
  padding: 15px 0px;
  width: 100px;
  cursor: pointer;
}

.next-btn {
  display: none;
}