/* style.css */

body {
    background-color: #f0f0f0;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

figure {
    margin: 0;
}

figure img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

figcaption {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

.profile-details {
    margin-top: 20px;
}

.profile-details h2 {
    margin: 10px 0;
    font-size: 1.5em;
}

.profile-details p {
    color: #444;
}

.social-links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links li a {
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
    transition: color 0.3s;
}

.social-links li a:hover {
    color: #005bb5;
}
