h1 {
    color: #ff1493; /* 濃いピンク色の見出し */
    text-align: center; /* テキストを中央揃え */
}

p {
    color: #ff1493; /* 濃いピンク色の段落 */
    text-align: center; /* テキストを中央揃え */
}

textarea {
    border: 2px solid #ff1493; /* 濃いピンク色のボーダー */
    border-radius: 10px; /* 角を丸くする */
    margin-bottom: 10px; /* テキストボックスの下にマージンを追加 */
    text-align: center; /* テキストを中央揃え */
}

button {
    background-color: #ff1493; /* 濃いピンク色のボタン */
    color: #ffffff; /* 白色のテキスト */
    border: none; /* ボーダーを削除 */
    padding: 15px 32px; /* パディングを追加 */
    text-align: center; /* テキストを中央揃え */
    text-decoration: none; /* テキストの装飾を削除 */
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer; /* カーソルをポインタに変更 */
    border-radius: 10px; /* 角を丸くする */
}

.container {
    display: flex;
    justify-content: center;
}
