/* All */
/* NOTE: Google Fonts の読み込みは、パフォーマンス的な観点から本来は非同期読み込みの <link> 推奨だが、各 HTML ファイルに書くのが面倒なので @import している */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap");
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  padding: 1rem;
  max-width: 800px;
  margin: auto;
  background-color: #f9f3e9;
  color: #5f5c57;
  -webkit-tap-highlight-color: transparent;
}

h1 {
  text-align: center;
  font-size: x-large;
  margin: 2rem;
}

textarea {
  width: 100%;
  padding: 0.6rem;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

p,
ul {
  font-size: 1.2rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

/* Header */
.header-container {
  display: flex;
  justify-content: center;
}

.header-link {
  text-decoration: none;
}

.header-text {
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1.2px;
  padding: 1.2rem;
  width: 240px;
  background-color: #ea967a;
  border-radius: 5px;
  box-shadow: #b3b3b3 3px 3px 5px 0px;
}
