.cover {
    background-image: url('../images/cover_1.jpg');
    background-repeat: no-repeat;
    background-position: bottom center;
    
    background-size: cover;
    height: 500px;
    padding: 0;
}

.textcover {
    line-height: 2.5rem;
    background: rgba(234, 63, 186, 0.44);
    padding: 25px 0;
}

.animate-charcter {
    font-size: 2.5rem;
    font-family: 'Poppins';
    font-style: italic;
    text-transform: uppercase;
    font-weight: 900;
    background-image: linear-gradient(
        -225deg,
        #231557 0%,
        #44107a 29%,
        #ff1361 67%,
        #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    padding: 0 60px;
    max-width: 1200px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

