body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    margin: 0;
}

.card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    margin: 0;
    font-size: 2em;
}

.bio {
    color: #555;
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.links a, .contact a {
    text-decoration: none;
    color: #007bff;
    margin: 0 15px;
    font-size: 1.1em;
    transition: color 0.3s;
}

.links a:hover, .contact a:hover {
    color: #0056b3;
}

.contact {
    margin-top: 25px;
}
