body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    background: linear-gradient(120deg, #1e90ff, #32cd32);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}

/* Profile Picture */
.profile-pic {
    width: 225px;
    height: 225px;
    background-size: cover;
    background-image: url('/icons/Birdt.png');
    background-position: center;
    border-radius: 50%;
    border: 5px solid silver;
    margin-top: 55px;
    display: block;
}

/* Headings */
h1 {
    font-size: 3.5rem;
    margin: 20px 0;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

/* About Me Section */
.about-me {
    max-width: 650px;
    margin: 10px;
    font-size: 1.5rem;
    line-height: 1.4;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

/* Links Section */
.links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s, opacity 0.3s;
}

.link-item:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Icons */
.icon {
    max-width: 150px;
    max-height: 150px;
    margin-bottom: 5px;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 10px 0;
    font-size: 1.35rem;
    border-top: silver 1px;
}

/* Background Animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
