.dark-animated-text {
    background: linear-gradient(to right,
            #004d60,
            #1a237e,
            #4a148c,
            #004d60);
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradientAnimation 3s linear infinite;
}

.bright-animated-text {
    background: linear-gradient(to right,
            #009cb1,
            #3f51b5,
            #9c27b0,
            #009cb1);
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradientAnimation 3s linear infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 200% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.main-header {
    display: flex;
    margin: 4rem 0 2rem 0;
}

.blue-text {
    color: #004d60;
}