.announcement_banner {
    font-family: "Work Sans";
    display: block;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5;
    padding: 10px 0px;
    margin: 0px;
    text-align: center;
    box-sizing: border-box;
    background-color: #0021a5;
    background: linear-gradient(to right, rgba(0,33,165,1) 0%, rgba(255,79,44,1) 90%, rgba(255,79,44,1) 100%);
    color: #ffffff;
    position: relative;
    z-index: 100;
      animation-name: banner;
      animation-duration: 4s;
}

.announcement_banner a{
	text-decoration: none;
}
.announcement_banner h3{
	font-family: 'BioRhyme;
}
.announcement_banner p{
	font-family: 'Work Sans;
}
@keyframes banner {
  0% { left:0px; top:-200px;}
  100% { left:0px; top: 0px;}
  
} 