/*!
This is Different CSS effect i have found online and compiled for all web used
 */

/*!  */

 /*! Typewriter effect in text - Start */
.text_1 {
    animation: text1;
}
.text_2 {
    animation: text2;
}
.text_1, .text_2 {
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    animation-duration: 30s;
    animation-timing-function: steps(25, end);
    animation-iteration-count: infinite;
}
.text_1::after, .text_2::after {
    content: "|";
    position: absolute;
    right: 0;
    animation: caret infinite;
    animation-duration: 1s;
    animation-timing-function: steps(1, end);
}
@keyframes text2 {
    0%, 50%, 100% {
        width: 0;
    }

    60%, 90% {
        width: 19em;
    }
}
@keyframes text1 {
    0%, 50%, 100% {
        width: 0;
    }
    10%, 40% {
        width: 22em;
    }
}
@keyframes caret {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
/*!Typewriter effect in text - End */

/*!Background gif image css - Start */
 .backgroundimg {
   /* background-image: url('images/matrix.gif');   */
    background-image: url(../../images/6.gif);
    background-position: center;
    background-size: cover;
    overflow: hidden;
    }
/*!Background gif image css - End */

 /*!Background PaticleJS css - Start */
.particleJS {
position: absolute;
display:block;
top: 0;
left: 0;
z-index: 0;
}
 /*!Background PaticleJS css - End */

