@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 50px 20px 20px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('https://i2.wp.com/wallpapercave.com/wp/wp11252666.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Montserrat', sans-serif;
    color: white;
    filter: blur(0.5px);
    position: relative;
}

#background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://avatars.mds.yandex.net/i?id=1dd1e1d852de2b7c4a373b6b6d38ef48_l-10879773-images-thumbs&n=13');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

#aira-text {
    font-size: 5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.letter {
    display: inline-block;
    animation: letterFade 1s ease-in-out forwards, liquid 3s ease-in-out infinite 1s;
    opacity: 0;
}

@keyframes letterFade {
    to {
        opacity: 1;
    }
}

@keyframes liquid {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.05) rotate(2deg);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
    }
    75% {
        transform: scale(1.05) rotate(-2deg);
    }
    100% {
        transform: scale(1);
    }
}

#welcome-text {
    margin-top: 50px;
    max-width: 800px;
    text-align: center;
    line-height: 1.6;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInText 3s ease-in-out 2s forwards;
    opacity: 0;
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

@keyframes backgroundRock {
    0% {
        background-size: cover;
    }
    50% {
        background-size: 110% auto;
    }
    100% {
        background-size: cover;
    }
}

#quote {
    font-weight: bold;
    font-size: 1.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInQuote 2s ease-in-out 4s forwards;
    opacity: 0;
}

@keyframes fadeInQuote {
    to {
        opacity: 1;
    }
}

#support-text {
    margin-top: 50px;
}

#donate-button {
    margin-top: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

#donate-button:hover {
    opacity: 0.8;
}
