.animate-charcter {
    text-transform: uppercase;
    /* background-image: linear-gradient( -225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100% );*/
    background-image: linear-gradient( -225deg, rgb(247, 60, 14) 20%, deepskyblue 29%, #A5BFF1 67%, #38A0DC 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;
    font-size: 50px;
    font-weight: bold;
    text-decoration: underline
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.section-anime1 {
    animation-duration: 8s;
    animation-name: slidein1;
  
        animation-iteration-count: 3;
}
@keyframes slidein1 {
    from {
        margin-left: 50%;
        width: 100%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}

.section-anime2 {
    animation-duration: 8s;
    animation-name: slidein2;
    /*  animation-iteration-count: infinite;*/
    animation-iteration-count: 2;
}

@keyframes slidein2 {
  
    /*from {
       
        margin-left: 10%;
        width: 100%;
    }

    to {
        margin-left: 100%;
        width: 300%;
    }*/
}