/* styles.css */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #282c34;
    margin: 0;
    /*font-family: 'Arial', sans-serif;*/
    font-family: 'Poppins', sans-serif;
}

.container {
    text-align: center;
}

.animated-text {
    font-size: 5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6ec4, #7873f5, #65c7f7, #ff9a44);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 5s infinite, text-movement 2s infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes text-movement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
