/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Card Container */
.card-container {
    background-color: #ffffff;
    width: 350px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.card-container:hover {
    transform: translateY(-5px);
}

/* Profile Picture */
.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Typography */
h1 {
    font-size: 1.8em;
    margin: 0;
    color: #0078D7;
}

h2 {
    font-size: 1.2em;
    margin: 5px 0 15px;
    color: #666;
}

p.bio {
    font-size: 0.95em;
    margin-bottom: 20px;
}

/* Contact Information */
.contact-info a {
    color: #0078D7;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
}

.social-links a:hover {
    color: #0078D7;
}

/* QR Code */
#qrcode {
    margin: 15px auto;
    width: 128px;
    height: 128px;
}

/* Footer  */
.footer {
    color: grey;
    font-style: italic;
    font-size: .75em;
}