.marquee {
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.1;
    padding: 100px 0;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: -5px;
}

.marquee-item {
    display: flex;
    transition: color 0.2s, -webkit-text-stroke 0.2s;
    -webkit-transition: color 0.2s, -webkit-text-stroke 0.2s;
    -moz-transition: color 0.2s, -webkit-text-stroke 0.2s;
    -ms-transition: color 0.2s, -webkit-text-stroke 0.2s;
    -o-transition: color 0.2s, -webkit-text-stroke 0.2s;
}

.marquee-item:nth-child(odd) {
    -webkit-text-stroke: 1px var(--ab-dark-color);
    color: transparent;
}

.marquee-item:hover {
    color: var(--accent-color)
}

.marquee-item:hover:nth-child(odd) {
    -webkit-text-stroke: 1px transparent;
}

@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
    .marquee {
        font-size: 4rem;
        padding: 50px;
    }
}