/* 
----------------------------------------------------------------

random-text.css
Rotating random-text styles

----------------------------------------------------------------
*/

.rotating-text {
    animation: fadeinout 3s;
}

@-webkit-keyframes fadeinout {
    0% { opacity: 0.1; }
    100% { opacity: 1; }
}

@keyframes fadeinout {
    0% { opacity: 0.1; }
    100% { opacity: 1; }
}

#rotating_texts_container {
    width: 100%;
    margin: auto;
}
.rotating-text h4 {
       color: #666666;
}