/* 全体の背景と文字色（ダークモード） */
body {
    background-color: #121212;
    color: #ffffff;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* プロフィールカードの枠組み */
.card {
    background-color: #222222;
    width: 320px;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
    /* 缶バッジに合わせた黄色のラインを上に引く */
    border-top: 6px solid #facc15; 
}

/* アイコン画像の設定 */
img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* 名前の設定 */
.name {
    font-size: 24px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
}

/* 血液型の設定 */
.blood {
    color: #aaaaaa;
    font-size: 14px;
    margin: 0 0 20px 0;
}

/* 各項目の四角い枠 */
.box {
    background-color: #333333;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
}

/* 小見出し（趣味、特技など） */
.title {
    color: #facc15;
    font-size: 14px;
    margin: 0 0 8px 0;
    border-bottom: 1px solid #555555;
    padding-bottom: 4px;
}

/* 本文の設定 */
.text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

/* 好きな言葉の設定（特別に強調） */
.quote {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    color: #facc15;
    text-align: center;
}