
#scrollTitle {
    position: relative;
    display: flex;
    width: 450px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff, #fff, transparent);

}

#scrollTitle div {
    white-space: nowrap;
    animation: animate var(--t) linear infinite;
    animation-delay: calc(var(--t) * -1);
}

#scrollTitle div:nth-child(2) {
    animation: animate2 var(--t) linear infinite;
    animation-delay: calc(var(--t) / -2);
}

#scrollTitle div span {
    display: inline-flex;
    margin: 1px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'BebasNeue-Bold';
    color: #FF6201;
    padding: 5px 10px;
    transition: 1s;
}

#tituloName {
    font-family: 'BebasNeue-Bold';
    color: black;
    font-size: 4em;
    text-shadow: 4px 4px 4px rgb(167, 167, 167);
    opacity: 0;
    animation: 1.2s ease-out 0s 1 slideInFromTop forwards;
}
