.social-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-button {
    display: block;
    width: 80%;
    padding: 1rem;
    text-align: center;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.social-button:hover {
    transform: scale(1.05);
}

.social-button.fb {
    background-color: #1877f2;
}

.social-button.ig {
    background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5);
}

.social-button.x {
    background-color: #000;
}

.social-button.yt {
    background-color: #808080; /* グレー */
}

.social-button.yt:hover {
    background-color: #A9A9A9; /* 少し明るいグレー */
}

h2 {
    text-align: center; /* タイトルを中央揃え */
    font-size: 1rem; 
}

.profile-image {
    display: block;         /* ブロック要素にして中央揃えを効かせる */
    margin-left: auto;      /* 左の余白を自動で調整 */
    margin-right: auto;     /* 右の余白を自動で調整 */
    width: 90%;             /* 幅をブラウザ幅の90%に設定 */
}

/* ヘッダー */
header {
    background-color: #e0f7fa; /* 淡い水色 */
    text-align: center; /* ヘッダー内のテキスト（h1）を中央に */
    padding: 20px;
}

/* ヘッダー内のh1 */
header h1 {
    margin: 0; /* h1のデフォルトマージンをリセット */
}

/* フッター */
footer {
    background-color: #e0f7fa; /* 淡い水色 */
    text-align: center; /* フッター内のテキストを中央に */
    padding: 10px;
}
