@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Playfair Display', serif;
    background: black;
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    animation: fadeIn 1.5s ease-in-out;
}

h1 {
    font-size: 24px;
    animation: fadeIn 1.5s ease-in-out 0.5s forwards;
    opacity: 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
    animation: fadeIn 1.5s ease-in-out 1s forwards;
    opacity: 0;
}

.social-links a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}