body {
	text-align: center;
	font-family: sans-serif;
	margin: 0px;
	padding: 0px;
	background-size: 100% !important;
	background-attachment: fixed !important;
	background-position-y: 60vh !important;
    transition: background-image 1s ease;
}

p {
	max-width: 70vw;
	margin: auto;
}

.pageBanner {
	background: transparent;
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pageContent {
	background: white;
	min-height: 60vh;	
	padding: 15px;
}

.bannerHeader {
	color: white;
	font-size: 36pt;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
	background: rgba(0, 0, 0, .2);
	backdrop-filter: blur(5px);
	padding: 15px;
	border-radius: 5px;
}

#navCont {
	position: absolute;
	right: 0px;
	top: 0px;
	display: flex;
	justify-content: stretch;
}

#navCont a {
	display: flex;
	align-items: center;
	padding: 15px;
	padding-left: 25px;
	padding-right: 25px;
	text-decoration: none;
	color: white;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
	font-size: 14pt;
	transition-duration: .3s;
}

a:hover::before {
	min-height: 22px !important;
}

#navCont a::before {
	background: linear-gradient(#ccc, #555);
	border-radius: 5px;
	min-height: 0px;
	min-width: 10px;
	display: inline-block;
	content: " ";
	margin-right: 5px;
	transition-duration: .5s;
}

#navCont a.active::before {
	background: linear-gradient(#f99, #f00);
	min-height: 15px;
}

img {
	border-radius: 5px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
	max-width: 60vw;
	margin: 10px;
}

.sideBySide {
	display: flex;
}

.leftSide {
	max-width: 40vw;
}

.leftSide img {
	width: calc(100% - 30px);
	margin: 15px;
}

.rightSide p {
    text-align: left;
}

.siteTile {
    background: #dde;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
    text-decoration: none;
    color: black;
    margin: 10px;
    display: inline-block;
    transition-duration: .5s;
    text-align: center;
    width: 150px;
}

.siteTile:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .6);
}

.siteTile img {
    display: block;
    margin: auto;
    box-shadow: none;
    height: 150px;
    width: 150px;
}

.siteTile p {
    margin: 5px;
}