body{
    background: #d8ecf3;
    margin: 0;
}

#title-sec {
    height:100%;
    /* max-height: 600px; */
    width: 100%;
    background-color: dodgerblue;
    background-image:
            url('../img/utils/movingBackground1.jpg');
    background-repeat: repeat-x;
    background-position:
            0 20%,
            0 100%,
            0 50%,
            0 100%,
            0 0;
    background-size: cover;
    animation: 50s para infinite linear;
}

#cluster-intro {
    height: 100%;
    /* max-height: 600px; */
    width: 1200px;
    background-position:
            0 20%,
            0 100%,
            0 50%,
            0 100%,
            0 0;
    background-size:
            2500px,
            800px,
            500px 200px,
            1000px,
            400px 260px;
}
.cluster-intro-text {
    font-family: 'DynaPuff';
    font-size: 28px;
    color: #05445E;
}



/*body {*/
/*    background-color: lightskyblue;*/
/*}*/

@keyframes para {
    100% {
        background-position:
                -5000px 20%,
                -800px 95%,
                500px 50%,
                1000px 100%,
                400px 0;
    }
}

.wrapper {
    animation: scroll 70s linear infinite;
    background: url("../img/utils/background-pikachu.jpg"), #111111;
    height: 100vh;
    min-width: 360px;
    width: 2000px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    perspective-origin: 50% 50%;

}

@keyframes scroll {
    100%{
        background-position:0px -3000px;
    }
}

@media (prefers-reduced-motion) {
    .wrapper {
        animation: scroll 200s linear infinite;
    }
}

@media (min-width: 670px) {
    .title {
        font-size: 5rem;
    }
}

