*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#111827;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    color:white;
}

.card{
    background:#1f2937;
    padding:40px;
    border-radius:20px;
    width:350px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

h1{
    font-size:30px;
}

h2{
    color:#60a5fa;
    margin:10px 0;
}

p{
    margin:20px 0;
    color:#d1d5db;
}

.buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.buttons a{
    background:#3b82f6;
    color:white;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    transition:.3s;
    font-weight: 700;
}

.buttons a:hover{
    background:#2563eb;
}