@charset "utf-8";
/* CSS Document */

	  /* Make it a marquee */
.marquee {
    width: auto;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 20s linear infinite;
}

.marquee:hover {
    animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
    from  { text-indent: 100% }
    to    { text-indent: -200% }
}


/* Style the links */
.vanity {
    color: #333;
    text-align: center;
    font: .75em 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
}

.vanity a {
    color: #1570A6;
    transition: color .5s;
    text-decoration: none;
}

.vanity a:hover {
    color: #F65314;
}


