body {
    background-color: #fff176;
    font-family: "Yu Gothic", sans-serif;
    text-align: center;

    /* 背景画像を入れたい場合 */
    /*
    background-image: url("../背景画像.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    */
}

h1 {
    color: #1565c0;
    font-size: 42px;
    text-shadow: 3px 3px 0 #ffca28;
    margin-top: 40px;
}

p {
    font-size: 18px;
    font-weight: bold;
    color: #222222;
}

.profile-box {
    width: 850px;
    margin: 50px auto;
    padding: 35px;
    background-color: white;
    border: 6px solid #1e88e5;
    border-radius: 30px;
    box-shadow: 12px 12px 0 #ffca28;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.profile-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border: 6px solid #0d47a1;
    border-radius: 25px;
    background-color: #bbdefb;
}

table {
    background-color: white;
    border-collapse: collapse;
    width: 520px;
    border: 5px solid #0d47a1;
    border-radius: 20px;
    overflow: hidden;
}

th {
    background-color: #1e88e5;
    color: white;
    padding: 18px;
    width: 150px;
    font-size: 20px;
    border: 3px solid #0d47a1;
}

td {
    padding: 18px;
    background-color: #fffde7;
    font-size: 20px;
    font-weight: bold;
    border: 3px solid #0d47a1;
}

tr:nth-child(even) td {
    background-color: #e3f2fd;
}

tr:hover td {
    background-color: #ffecb3;
}