/* 背景全体 */
body {
  margin: 0;
  min-height: 100vh;

  background-image: url("poems-bg.jpg"); /* 薄い写真 */
  background-size: cover;
  background-position: center;

  font-family:
    "UD デジタル 教科書体",
    "UD Digi Kyokasho",
    "Yu Gothic",
    sans-serif;

  color: #4a5a6a;
}

/* 中央配置ブロック */
.wrapper {
  max-width: 520px;
  margin: 0 auto;
  padding: 70px 20px;

  text-align: center;

  background: rgba(255, 255, 255, 0.78);
}

/* 見出し */
h1 {
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  margin-bottom: 50px;
}

h2 {
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  margin-bottom: 50px;
}


/* 詩タイトル一覧 */
.poem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.poem-list li {
  margin: 14px 0;
}

/* リンク */
.poem-list a {
  color: #4a5a6a;
  text-decoration: none;
}

.poem-list a:hover {
  text-decoration: underline;
  color: #2f3e4e;
}

/* 戻るリンク */
.back {
  margin-top: 60px;
  font-size: 0.9rem;
}

.back a {
  color: #4a5a6a;
  text-decoration: none;
}
