.flashy2:before, .flashy2:after {
    background: linear-gradient(75deg,
            #000000, #000000, #000000, #000000,
            #000000, #000000, #000000, #000000,
            #000000, #000000, #000000, #000000,
            #000000, #000000, #000000, #000000,
            #000000, #000000, #000000, #000000,
            #000000, #000000, #000000, #000000,
            #fff0e050,
            #000000, #000000, #000000, #000000,
            #000000, #000000, #000000, #000000,
            #000000, #000000, #000000, #000000,
            #000000, #000000, #000000, #000000,
            #000000, #000000, #000000, #000000,
            #000000, #000000, #000000, #000000);

}

.flashyContainer:before, .flashyContainer:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background-size: 800%;
    width: 99%;
    height: 99%;
    z-index: -1;
    animation: steam 90s linear infinite;
    border-radius: 50%;
}

.flashyContainer:after, .flashyContainer2:after {
    filter: blur(0px);
}

@keyframes steam {
    0% {
        background-position: 800% 0;
    }


    100% {
        background-position: 0 0;
    }
}