/* General Styles */
body {
    background: linear-gradient(to top, #c2e9fb, #a1c4fd);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Card Container */
.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 300px;
}

/* Profile Section */
.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.profile h1 {
    font-size: 22px;
    margin: 5px 0;
}

.profile h2 {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}

.profile p {
    font-size: 14px;
    color: #777;
}

/* Contact Buttons */
.contact-buttons {
    margin-top: 15px;
}

.btn {
    display: block;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    margin: 8px 0;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #1e4bbd;
}
