
.marqueebox {
    overflow: hidden;
    box-sizing: content-box;
	border:solid 1px #767171; 
    margin: 0px auto; 
    width: 85%; 
    height: 220px; 
    padding: 5px; 
    position: relative;
	font-size: 0.8em;
	font-weight: 220;
	line-height: 1.25em;
	
}

.marquee {
    top: 3em;
    position: relative;
    box-sizing: border-box;
    animation: marquee 25s linear infinite;

}

.marquee:hover {
    animation-play-state: paused;
}

/* Make it move, use 100% setting to define all text within the scroll */
@keyframes marquee {
    0%   { top:   8em }
    100% { top: -80em }
}

/* Make it look pretty */
.microsoft .marquee {
	margin: 0;
    padding: 0 1em;
    font: 0.6em;
}

.microsoft:before, .microsoft::before,
.microsoft:after,  .microsoft::after {
    left: 0;
    z-index: 1;
    content: '';
    position: absolute;
    pointer-events: none;
    width: 100%; height: 2em;

}

.microsoft:after, .microsoft::after {
    bottom: 0;
    transform: rotate(180deg);
}

.microsoft:before, .microsoft::before {
    top: 0;
}
/* Style the links */
.vanity {
    color: #333;
    text-align: center;
    font: .75em 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
}


.vanity a:hover, .microsoft a:hover {
    color: #F65314;
    text-decoration: underline;
}

.vanity a, .microsoft a {
    color:palegreen;
    transition: color .5s;
    text-decoration: none;
	opacity: 1.8;
}
