@keyframes rotate-self {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: rotate(360deg) scale(4, 4);
        -moz-transform: rotate(360deg) scale(4, 4);
        -webkit-transform: rotate(360deg) scale(4, 4);
        -o-transform: rotate(360deg) scale(4, 4);
    }
}

@keyframes appear-and-rotate {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fly-right {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate(100px, 20px);
        -moz-transform: translate(100px, 20px);
        -webkit-transform: translate(100px, 20px);
        -o-transform: translate(100px, 20px);
    }
}

.anim-bg {
    background-color: #121d29;
    width: 590px;
    height: 100px;
    color: white;
    font-family: arial;
    display: flex;
    align-items: center;
    vertical-align: center;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.go {
    opacity: 1;
    color: yellow;
    font-weight: bold;
}

.anim-bg .go {
    animation-name: rotate-self;
    animation-duration: 3s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

.anim-bg .go-sec {
    animation-name: appear-and-rotate;
    animation-duration: 3s;
    animation-delay: 5s;
    animation-fill-mode: forwards;
}

.anim-bg .go-tri {
    animation-name: fly-right;
    animation-duration: 2s;
}

.go-pos {
    position: absolute;
    right: 150px;
    opacity: 0;
    color: white;
}

.anim-bg h2 {
    margin: 0px;
    margin-left: 25px;
    margin-right: 15px;
    font-size: 60px;
}

.anim-bg h4 {
    margin: 0px;
    font-size: 30px;
    margin-bottom: 0px;
}