* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-color:  #f3f4f6;

    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card {
    width: 320px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px  rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.avatar {
    width: 96px;
    height: 96px;
    background-color:#d1d5db;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.profile-card .h1 {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.profile-card .role {
    font-size: 14px;
    color: #374151;
    margin-bottom: 24px;
}

.profile-card .email {
    font-size: 14px;
    color: #374151;
    margin-bottom: 24px
}

.profile-card button {
    width: 100%;
    height: 44px;
    background-color: #6366f1;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.profile-card button:hover {
    background-color: #4f46e5;
}

.profile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
