* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #181818; /* Dark background */
    color: #eaeaea; /* Light text color */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vcard {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background-color: #222; /* Dark card background */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s, transform 0.3s;
}
.vcard:hover {
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3), 0 4px 15px rgba(0,0,0,0.5);
    transform: translateY(-4px) scale(1.02);
}

.header {
    text-align: center;
}

.profile-img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    border: 4px solid #4CAF50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
    transition: border-color 0.3s;
}
.profile-img:hover {
    border-color: #81c784;
}

.title {
    font-weight: bold;
}

.description {
    font-style: italic;
}

.main-content {
    margin-top: 20px;
}

h2 {
    color: #4CAF50; /* Accent color for headings */
}

.contact-section,
.social-section {
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #4CAF50; /* Green links */
}

a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
}

/* Contact and donate icons */
.contact-list i, .donate-list i {
    margin-right: 8px;
    color: #4CAF50;
    font-size: 1.1em;
}

/* Donate section styling */
.donate-list {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #333;
}

/* Responsive design */
@media (max-width: 500px) {
    .vcard {
        max-width: 98vw;
        padding: 10px;
    }
    .profile-img {
        width: 80px;
    }
    h1 {
        font-size: 1.3em;
    }
    h2 {
        font-size: 1.1em;
    }
}

/* Button style for links (optional) */
.contact-list a, .donate-list a {
    padding: 2px 8px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.contact-list a:hover, .donate-list a:hover {
    background: #4CAF50;
    color: #fff;
}
