body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    margin: 0;
    padding: 0;
}
.container {
    width: 90%;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.profile-container {
    width: 90%; /* 画面幅の90%を使う（レスポンシブ対応） */
    max-width: 400px; /* 背景の高さを調整 */
    background-image: url("images/kurimaro.jpeg"); /* 背景画像を設定 */
    background-size: cover; /* 背景をちょうどよく調整 */
    background-position: center; /* 画像の中央を表示 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

h1 {
    background: #FAFAD2; /* Xの公式カラー（黒） */
    font-size: 24px;
    margin: 10px 0;
}

p {
    background: #FAFAD2; /* Xの公式カラー（黒） */
    font-size: 14px;
    color: #666;
}

.links {
    margin-top: 20px;
}

.link {
    background: #000; /* Xの公式カラー（黒） */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    display: block;
    text-decoration: none;
    font-weight: bold;
}
.link:hover {
    background: #222; /* ホバー時の色（少し明るい黒） */
}