/* =========================
   Date Section
   ========================= */

.date{
font-size:20px;
font-family:'Times New Roman', Times, serif;
color:black;
}

#date{
text-align:center;
font-weight:bold;
}


/* =========================
   Footer
   ========================= */

.footer{
background-color:#000080;
text-align:center;
color:white;
font-family:Arial;
font-size:18px;
font-weight:bold;
padding:10px;
}


/* Notice Scrolling */

.notice-wrapper{
position:relative;
overflow:hidden;
white-space:nowrap;
}

.notice-text{
display:inline-block;
padding-left:100%;
animation:scrollNotice 18s linear infinite;
}

.notice-text a{
color:#000080;
font-weight:bold;
text-decoration:none;
margin-right:50px;
}

.notice-text a:hover{
text-decoration:underline;
}

@keyframes scrollNotice{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-100%);
}

}

