/* style.css */
body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.6;
    width: 90%;
    max-width: 800px;
    margin: 0 auto; /* 中央寄せ */
    padding: 20px;
    background-color: #f7f7f7; /* 背景色 */
}

h1 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* その他の要素も適切にスタイル付け */
p, ul {
    margin-bottom: 15px;
}
ul {
    list-style: disc;
    padding-left: 20px;
}