/* 画面全体の設定（文字を画面の中央に配置します） */
body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fcfcfc; /* ほんのりグレーがかった白色の背景 */
    font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif; /* きれいな日本語フォント */
}

/* 「こんにちは。」の文字の装飾 */
h1 {
    font-size: 5rem; /* 文字の大きさ */
    font-weight: bold;
    
    /* 文字にグラデーションカラーをつける */
    background: linear-gradient(45deg, #ff758c, #ff7eb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* ふんわりとした影をつける */
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.15));
}