* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff8e1;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    position: relative;
}

.container {
    max-width: 800px;
}

.bird-container {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.bird {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff4081;
    position: relative;
    display: inline-block;
}

.typewriter {
    overflow: hidden;
    border-right: 0.15em solid #ff4081;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.15em;
    animation: 
        typing 3.5s steps(40, end),
        blink-caret 0.75s step-end infinite;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.social-link {
    display: inline-block;
    margin-top: 30px;
    padding: 10px;
    border-radius: 50%;
    background-color: #ff4081;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 64, 129, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) rotate(15deg);
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.5);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.copyright {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    font-size: 0.9rem;
    color: #666;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #ff4081 }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .bird {
        width: 150px;
    }
}