body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    text-align: center;
}

.logo-container {
    animation: fadeIn 2s ease-in-out;
}

.logo {
    width: 150px;
    height: auto;
    filter: var(--logo-filter);
}

/* Common animation for all text elements */
@keyframes slideInText {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Apply animation to all text elements with different delays */
.impact-text {
    margin-top: 10px;
    opacity: 0;
    animation: slideInText 1s ease-in-out forwards; /* 'forwards' to keep the final state */
}

/* Add delay to each text element */
#text1 {
    animation-delay: 1s;
}

#text2 {
    animation-delay: 1.5s;
}

#text3 {
    animation-delay: 2s;
}

/* Common fadeIn animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Light mode styles */
@media (prefers-color-scheme: light) {
    :root {
        --background-color: #fff;
        --text-color: #000;
        --logo-filter: none; /* No filter for light mode */
    }
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #000;
        --text-color: #fff;
        --logo-filter: invert(1); /* Invert colors for dark mode */
    }
}

/* Disable text and logo selection */
body, .logo {
    user-select: none;
}
