
/* Dark slate gray container that contains paragraph. */
#container {
	position: relative;
	border-radius: 20px;
	border-width: 2px;
	background-color: lightsteelblue;
	width: 45%;
	float: top;
	margin-left: auto;
	margin-right: auto;
	margin-top: 36%;
	padding: 5%;
	font-size: 20pt;
	color: darkslategray;
	font-family: 'Chakra Petch', sans-serif;
	text-align: center;
	border: 2px solid #555;
	border-color: black;
}

/* Black and dar menu bar that holds the menus that go link to other pages. */
.menuHolder {
	border-radius: 0px;
	background-image: linear-gradient(black, #032021);
	/* background-color: #032021;*/
	width: 100%;
	height: 120px;
	float: top;
}


/* The menu that links to the home page. */
.homeMenu {
	margin-top: 38px;
	margin-left: 20px;
	float: left;
	clear: left;
	font-size: 25pt;
	font-family: 'Bruno Ace', cursive;
}

/* Menu that links to another page that is not the home menu. */
.menu {
	margin-top: 38px;
	margin-left: 30px;
	float: left;
	clear: right;
	font-size: 25pt;
	font-family: 'Bruno Ace', cursive;
}

/* This is what the size and where the image is located on the page. */
img {
	position: relative;
	float:left;
	width: 50%;
	margin-top: 4%;
	margin-right: 25%;
	margin-left: 25%;
	border-radius: 10px;
	border: 5px solid #555;
	border-color: black;
}

/* Alice blue box that holds the title. */
.titleHeader {
	position: relative;
	border-radius: 20px;
	border-width: 2px;
	background-color: aliceblue;
	width: 46%;
	float: top;
	margin-right: auto;
	margin-left: auto;
	margin-top: 5%;
	padding: 6%;
	color: darkslateblue;
	font-size: 70pt;
	font-family: 'Bruno Ace', cursive;
	text-align: center;
	border: 2px solid #555;
	border-color: black;
}

/* background for home */
.homeBackground img {
	position: absolute;
	height: 100%; 
    background-position: center;
    background-size: cover; 
    width: 100%;
    margin: auto;
    border-radius: 0px;
}

/* Link that has never been clicked, un-visited link. */
a:link {
	color: white;
	text-decoration: none;
}

/* visited link */
a:visited {
	color: white;
	text-decoration: none;
}

/* mouse over link */
a:hover {
	text-decoration: none;
	color: skyblue;
}

/* selected link */
a:active {
	color: darkslateblue;
	text-decoration: none;
}

  body, html {
  height: 100%;
  margin: 0;
}

body.pageTwo {
  background-image: url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/i/6af9bd11-247d-4e8f-acd3-a53b65621f25/d6mxwh6-ff14427e-8e59-4ed2-b421-78306032ed22.png");
  background-size: 261px;
  animation: moveIt 30s linear infinite;
}
@keyframes moveIt {
  from {background-position: bottom left;}
  to {background-position: top right;}