*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Yu Gothic", sans-serif;
    background: linear-gradient(135deg,#fff8f3,#f4ece5);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.profile-card{
    width: 480px;
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    transition: .3s;
}

.profile-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,.2);
}

h1{
    text-align: center;
    color: #b54825;
    font-size: 40px;
    letter-spacing: 3px;
}

.subtitle{
    text-align: center;
    color: #777;
    margin-top: 8px;
    margin-bottom: 35px;
}

.item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5;
}

.item:last-child{
    border-bottom: none;
}

.title{
    font-weight: bold;
    color: #b54825;
    font-size: 18px;
}

.content{
    color: #444;
    font-size: 18px;
}