body
{
	 font: 1em Roboto;
	 color:white;
	 background-color: #083535;
	 background-size: contain; 
	 background-attachment: fixed; 
	 background-repeat:no-repeat;
	 background-position: center top;
	 text-align: center;
}
header
{
	background-color: #447575;
	text-align: right;
	position: sticky;
	top: 0;
	min-width: 100%;
	float: right;
	z-index: 10;
	margin: 0 auto;
}
footer
{
	text-align: center;
}
div
{
	vertical-align: middle;
}
h1
{
	color:white;
	font: 3.2em Merriweather;
	text-decoration: underline;
	text-decoration-color: #C6BB57;
}
h2
{
	font: italic 1.6em Merriweather;
}
p
{
	text-align:left;
}
a
{
	color:#C6BB57;
}
img
{
	object-fit: contain;
}
ul
{
	text-align: justify;
}
pre
{
	text-align: left;
	overflow-x: auto;
	overflow-y: auto;
}
button
{
	border: 2px solid #0E1E1E;
	border-radius: 2px;
	background-color:#0E1E1E;
	color:#FFFFFF;
	font: bold 1em Merriweather;
	margin: 12px;
	transition-duration: 0.5s;
}
button:hover
{
	color: #C6BB57;
	transform: scale(1.2);
}
.abutton
{
	border: 2px solid #0E1E1E;
	border-radius: 2px;
	background-color:#0E1E1E;
	color:#FFFFFF;
	font: bold 1rem Merriweather;
	text-decoration: none;
	margin: 1.2rem;
	padding-left:0.5rem;
	padding-right:0.5rem;
	padding-top:0.2rem;
	padding-bottom: 0.2rem;
	transition-duration: 0.5s;
}
.abutton:hover
{
	color: #C6BB57;
	font: bold 1.2rem Merriweather;
	margin: 1rem;
}
.media
{
	border: none;
	margin: 12px;
	background-color:#00000000;
	transition-duration: 0.5s;
}
.media:hover
{
	box-shadow:none;
	transform: scale(1.2);
}
a:hover
{
	transition-duration: 0.5s;
	transform: scale(1.1);
}
get_container
{
	background-color:#272535;
}
.container
{
	position:relative;
	width:30%;
	margin:1vh;
	display:inline-block;
}
.hoverImg
{
	display:inline-block;
	width:100%;
	object-fit:contain;
}
.overlay
{
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	height:0%;
	width:100%;
	opacity: 0;
	transition: 0.5s ease;
	background-color:#888888EE
}
.container:hover .overlay
{
	height:100%;
	opacity:1;
}