/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

/* Card Container */
.card {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 350px;
    text-align: center;
    padding: 20px;
}

/* Profile Section */
.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

h1 {
    font-size: 24px;
    margin: 0;
    color: #222;
}

h2 {
    font-size: 18px;
    margin: 5px 0 20px;
    color: #555;
}

/* Info Section */
.info p {
    font-size: 16px;
    margin: 10px 0;
}

.info a {
    color: #0073e6;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
}

/* Links Section */
.links {
    margin-top: 20px;
}

.links a {
    display: inline-block;
    margin: 5px 10px;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #0073e6;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.links a:hover {
    background-color: #005bb5;
}
