@charset "UTF-8";
/* CSS Document */

body {
	margin:0;
	padding:0;
	background-image:url(/images/background-tile.gif);
	background-repeat:repeat-x;
	background-color:#1f376d;
	font-family:Verdana, Arial, Helvetica, sans-serif
}

#container {
	background-image:url(../images/Key.jpg);
	background-repeat:no-repeat;
	height:612px;
	width:792px;
	padding-top:15px;
}

#copy {
	text-align:center;
	font-size:18px;
	color:#FFFFFF;

}

#copy h1 {
	margin:0;
	padding:0;
}

#copy a {
	color:#ffb90d;
	text-decoration:none;
}

#copy a:hover {
	text-decoration:underline;
	color:#ffb90d;
}

#flyer {
	margin-top:15px;
	margin-left:25px;
	float:left;
}

#key {
	text-align:right;
	padding-top:38px;
}

#title {
	display:inline;
	margin-top:15px;
	background-image:url(../images/HeaderBackground.gif);
	background-repeat:repeat-x;
	
}

#menu {
	text-align:center;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#1f376d;
}

#menu li {
	display: inline;
	list-style-type: none;
	padding-right: 10px;
}

#menu a {
	color:#1f376d;
	text-decoration:none;
}

#menu a:hover {
	text-decoration:underline;
	color:#ffb90d;
}

#year {
	text-align:center;
	float:left;
	margin-left:25px;
}

.image-overlay {
  position: relative; /* Needed if using a container */
  height: 100vh;  /* Adjust height as needed */
  width: 100vw;   /* Adjust width as needed */
}

.image-overlay img {
  position: absolute;
  top: 20%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Center the image within its dimensions */
  /* Adjust top, left, or transform for desired placement */
}