﻿.companyName {
    position: absolute;
    top: 40px;
    left: 60px;
    transform: translate(-50%,-50%);
    margin: 0;
    padding: 0;
    display: flex;
}

    .companyName li {
        list-style: none;
        color: #fff;
        font-family: Arial;
        font-size: 1em;
        letter-spacing: 0px;
        animation: animate2 1.4s linear infinite;
    }

        .companyName li:nth-child(1) {
            animation-delay: .2s;
        }

        .companyName li:nth-child(2) {
            animation-delay: .4s;
        }

        .companyName li:nth-child(3) {
            animation-delay: .6s;
        }

        .companyName li:nth-child(4) {
            animation-delay: .8s;
        }

        .companyName li:nth-child(5) {
            animation-delay: 1s;
        }

        .companyName li:nth-child(6) {
            animation-delay: 1.2s;
        }

@keyframes animate2 {
    0% {
        color: #484848;
        text-shadow: none;
    }

    90% {
        color: #484848;
        text-shadow: none;
    }

    100% {
        color: #fff900;
        text-shadow: 0 0 7px #fff900, 0 0 50px #fff;
    }
}
