/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* ページ全体の設定 */
body {
  background-color: #fff0f6; /* 淡いピンクの背景 */
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  color: #333; /* 文字は読みやすいダークグレー */
  line-height: 1.6;
  margin: 0;
  padding: 20px;
}

/* タイトル */
h1 {
  color: #ff66aa;
  text-align: center;
  text-shadow: 2px 2px #ffe6f0;
}

/* 見出し */
h2 {
  color: #cc3399;
  border-bottom: 2px dashed #ff99cc;
  padding-bottom: 5px;
  margin-top: 30px;
}

/* リンク */
a {
  color: #ff66aa;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  color: #cc0066;
  text-decoration: underline;
}

/* リスト */
ul {
  list-style-type: "💖 ";
  padding-left: 20px;
}
