/* リセットCSS（オプション） */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ページ全体のスタイル */
body {
    height: 100vh; /* ビューポートの高さに合わせる */
    display: flex;
    justify-content: center; /* 水平方向に中央揃え */
    align-items: center;     /* 垂直方向に中央揃え */
    background-color: #000000; /* 背景色を黒に設定 */
}

/* 中央のテキストのスタイル */
.centered-text {
    font-size: 10rem; /* 文字サイズを大きく */
    color: #FFFFFF;    /* 文字色を白に設定 */
    font-family: Arial, sans-serif; /* フォントファミリー */
}
