﻿.Anthem {
    width: 23em;
    height: 15em;
    margin: 1em auto;
    padding-top:20px;
    overflow: hidden;
    background: #4e9a67;
    color:#fff;
    border-radius:5px;
    position: relative;
    box-sizing: border-box;
    -webkit-box-shadow: inset 1px 1px 20px -3px rgba(0,0,0,0.57);
-moz-box-shadow: inset 1px 1px 20px -3px rgba(0,0,0,0.57);
box-shadow: inset 1px 1px 20px -3px rgba(0,0,0,0.57);
}

.marquee {
    top: 6em;
    position: relative;
    box-sizing: border-box;
    animation: marquee 80s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

/* Make it move! */
@keyframes marquee {
    0%   { top:   8em }
    100% { top: -38em }
}

/* Make it look pretty */
.microsoft .marquee {
	margin: 0;
    padding: 0 1em;
    line-height: 1.5em;
    font-weight:bold;
    font: 1em 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
}

/*.microsoft:before, .microsoft::before,
.microsoft:after,  .microsoft::after {
    left: 0;
    z-index: 1;
    content: '';
    position: absolute;
    pointer-events: none;
    width: 100%; height: 2em;
    background-image: linear-gradient(180deg, #FFF, rgba(78,154,103,0.8));
}*/

.microsoft:after, .microsoft::after {
    bottom: 0;
    transform: rotate(180deg);
}

.microsoft:before, .microsoft::before {
    top: 50em;
}
