@charset "utf-8";

/* This holds the page logo. It is not clickable. It is present when the homepage is open. */
.mainIcon{
	float: right;
	width: 85px;
	margin-right: 15px;
}
@media screen and (max-width: 500px){
	.mainIcon{
		display: inline-block;
		width: 60px;
	}
}

/* This holds the home logo. It is revealed when any page other than the homepage is open. It is clickable, and opens the homepage. */
.homeIcon{
	float: right;
	width: 45px;
	margin-right: 15px;
	cursor: pointer;
	display: none;
}
@media screen and (max-width: 800px){
	.homeIcon{
		width: 30px;
	}
}

.mainIcon img, .homeIcon img{
	max-width: 100%;
}

/* These are the individual widget pages. */
.widgetPage{
	display: none;
	margin: 0px auto 400px auto;
	padding: 15px;
	width: 75%;
	font-size: 14px;
	color: #000000;
	text-align: left;
	background-color: #ffffff;
	min-height: 450px;
	box-shadow: 5px 5px 8px #888888;
	border: 1px solid #d3d3d3;
	position: relative;
	animation: fadeInFromRightWidgetPage 0.2s;
}
@keyframes fadeInFromRightWidgetPage{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}
@media screen and (max-width: 720px){
    .widgetPage{
		width: 90%;
		border: 0px;
		font-size: 12px;		
    }
}

.widgetPage img{
	max-width: 100%;
}

/* This is an additional class for the homepage which alters the widgetPage style. */
.homePage{
	display: block;
	background-color: transparent;
	box-shadow: none;
	border: none;
	animation: fadeInFromLeftHomePage 0.2s;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
@keyframes fadeInFromLeftHomePage{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}

/* This is the introductory page-wide paragraph on the homepage only. */
.homePageIntro{
	background-color: #ffffff;
	border-top: 1px solid #696969;
	border-bottom: 1px solid #696969;
	padding: 15px 15px 0px 15px;
}

.homePageIntro p{
	margin: 10px;
}

/* These are the icons. */
.iconButton{
	display: inline-block;
	margin: 10px 15px 10px 15px;
	padding: 5px 8px 8px 8px;
	background-color: #517a92;
	color: #ffffff;
	font-size: 18px;
	text-align: center;
	cursor: pointer;
	width: 100px;
	height: 85px;
	font-size: 15px;
	line-height: 1.2;
	border-radius: 30%;
	border: 3px solid #ffffff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
	vertical-align: top;
}
@media screen and (max-width: 1200px){
    .iconButton{
		margin: 8px 5px 8px 5px;
    }
}

.iconButton:hover{
	border: 3px solid #ffffff;
	box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.3), 0 6px 20px 0 rgba(255, 255, 255, 0.3);
}

.iconButton img{
	width: 50%;
	margin: 0px auto 4px auto;
	display: block;
}