.body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1a1a1a;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.title {
    font-size: 2.5rem;
    color: #ff4040;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.face {
    width: 200px;
    height: 200px;
    animation: float 3s ease-in-out infinite;
}

.moving-eye {
    animation: wink 4s infinite;
}

.animated-text {
    display: inline-block;
    animation: float 3s ease-in-out infinite, rainbow 6s linear infinite;
    ;
}

@keyframes rainbow {
    0% {
        color: #ff0000;
    }

    16.67% {
        color: #ff8000;
    }

    33.33% {
        color: #ffff00;
    }

    50% {
        color: #00ff00;
    }

    66.67% {
        color: #0000ff;
    }

    83.33% {
        color: #8000ff;
    }

    100% {
        color: #ff0000;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes wink {

    0%,
    90%,
    100% {
        transform: scaleY(1);
    }

    95% {
        transform: scaleY(0.1);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #ff4040, 0 0 10px #ff4040;
    }

    to {
        text-shadow: 0 0 10px #ff4040, 0 0 20px #ff4040;
    }
}