body, button, input, textarea {
    font-family: 'Karla', sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, hsla(213, 62%, 45%, 1) 0%, hsla(203, 89%, 71%, 1) 52%, hsla(0, 0%, 96%, 1) 100%); /* Adjust the colors as per the gradient you need */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h1 {
    margin-bottom: 5px; /* Decrease the bottom margin of the h1 */
    animation: fadeIn 2s ease-in-out;
}


.profile-card {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    text-align: center;
    width: 300px; 
    animation: fadeIn 1.3s ease-in-out;
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: -50px; /* Half of the height to offset into the background */
    border: 4px solid white;
    animation: fadeIn 1.0s ease-in-out;
}

.sub {
    color: #555;
    font-size: 1em;
    margin-top: 0; 
    animation: fadeIn 2.4s ease-in-out;
}

.location {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9em;
    margin: 10px 0;
}

.fun-fact {
    background-color: #f0f0f0;
    border-radius: 10px;
    margin: 20px 0;
    padding: 10px;
    animation: fadeIn 3s ease-in-out;
}

.social-links {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

.social-link {
    display: block;
    margin: 5px 0;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #666;
}

body, button, input, textarea {
    font-family: 'Karla', sans-serif;
}

/* Continue with the rest of your CSS */

/* You can add media queries to make the layout responsive */
