.mw-body {
background-color: navy;
font-family:"Bubblegum Sans";
}
.firstHeading {
text-align: center;
}
.box {
height: 256px;
overflow: hidden;
position: relative;
}
.box .content {
color:#b39d26;
text-shadow:0.05em 0.05em 0.02em #000000;
font-size: 5vw;
position: absolute;
width: 100%;
height: 100vh;
margin: 0;
animation: scroll linear;
animation-delay: 0s !important;
animation-duration: 130s !important;
animation-iteration-count: infinite !important;
}
.box .content a, .box .content .nowrap span {
color:#b39d26 !important;
}
.box .content .smaller {
font-size: 3.5vw;
}
@keyframes scroll {
0% {transform: translateY(50%);}
100% {transform: translateY(-900%);}
}