﻿/* Make it a marquee */
.marquee {
    width: 76%;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    color: white;
    font-family: 'Yekan';
    font-size:14px;

}
    .marquee a {
        padding: 20px;
    }


.marquee:hover {
    animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
    0%   { text-indent: 27.5em }
    100% { text-indent: -105em }
}

/* Make it pretty */
.microsoft {
    padding-left: 1.5em;
    position: relative;
    font: 16px 'Yekan';
}

/* ::before was :before before ::before was ::before - kthx */
.microsoft:before, .microsoft::before {
    z-index: 2;
    content: '';
    position: absolute;
    top: -1em; left: -1em;
    width: .5em; height: .5em;
}

.microsoft:after, .microsoft::after {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2em; height: 2em;
}

/* Style the links */
.vanity {
    color: white;
    text-align: right;
}

.vanity a, .microsoft a {
    color: white;
    transition: color .5s;
    text-decoration: none;
}

.vanity a:hover, .microsoft a:hover {
    color: white;
}

/* Style toggle button */
.toggle {
	display: block;
    margin: 2em auto;
}
