/**
{
	animation-name: example;
  	animation-duration: .1s;
  	animation-iteration-count: infinite;
}*/

*
{
	margin: 0;
	padding: 0;
}

body
{
	background-color: rgb(194, 230, 255);
}

.jumbotron
{
	width: 90%;
	height: 100px;
	background-color: rgb(135,206,235);
	border-radius: 50%;
	position: relative;
	left: 90px;
	top: 10px;
	
}

.pageTitle
{
	text-align: center;
	padding-top: 30px;
	/*text-decoration: underline;*/
	font-size: 40px;
}

.navBar
{
	width: 70%;
	height: 50px;
	position: relative;
	top: 20px;
}

.navBar ul
{
	text-decoration: none;
	list-style-type: none;
	/*margin-top: 5px;*/
	padding: 0px;

}

.navBar li a
{
	display: inline;
	width: 105px;
	float: left;
	padding: 10px;
	position: relative;
	left: 55%;
	text-decoration: none;
	background-color: black;
	color: rgb(135,206,235);
}

.navBar li a:hover
{
	background-color: rgb(135,206,235);
	color: black;
}

.boxOne
{
	width: 350px;
	height: 350px;
	background-color: rgb(10,185,235);
	border-radius: 10%;
	position: relative;
	left: 200px;
	top: 200px;
}

.boxTwo p, boxThree p
{
	font-size: 24px;
	padding: 15px;
	margin-left: 5px;
	position: relative;
	top: 25px;
}

.boxOne p
{
	font-size: 24px;
	padding: 10px;
	margin-left: 5px;
	position: relative;
}

.boxTwo
{
	width: 350px;
	height: 350px;
	background-color: rgb(10,185,235);
	border-radius: 10%;
	position: relative;
	left: 650px;
	top: -150px;
}


.boxTwo img, .boxThree img
{
	border-radius: 10%;
}

.boxThree
{
	width: 350px;
	height: 350px;
	background-color: rgb(10,185,235);
	border-radius: 10%;
	position: relative;
	left: 1100px;
	top: -500px;
}

/*{
	animation-name: example2;
  	animation-duration: .1s;
  	animation-iteration-count: infinite;
}*/

@keyframes example
{
	from{background-color: blue;}
	to{background-color: red;}
}

@keyframes example2
{
	from{background-color: green;}
	to{background-color: orange;}
}