* { margin: 0px; }



body {
	background-color: #999999;
	background-image: url('/imgs/left-wave.svg'), url('/imgs/right-wave.svg');
	background-position: left top, right top;
	background-repeat: no-repeat, no-repeat;
	background-size: cover, cover;
	padding-left: 25%;
	padding-right: 25%;
	padding-bottom: 25%;
}


div.title {
	font-family: "Segoe Script", cursive, monospace;
	font-size: 48pt;
	text-align: center;
	text-decoration: underline;
	text-decoration-thickness: auto;
	color: black;
	
}


a:link {
	color: #FFFFFF;
	text-decoration-line: none;
}



a:visited {
	color: #d3d3d3;
}


a:hover {
	color: #000000;
}


div.content {
	border: invisible;
	box-shadow: 5px 5px 5px black;
	border-radius: 5px;
	background-color: #484848;
	color: #d3d3d3;
	text-align: center;
	font-size: large;
	font-family: Arial, Helvetica, sans-serif;
	padding: 10px;
}



h1 {
	border: invisible;
	box-shadow: 5px 5px 5px black;
	border-radius: 5px;
	background-color: #d3d3d3;
	color: #484848;
	margin-top: 50px;
	margin-bottom: 10px;
}



#footer {
	left: 0;
	bottom: 0;
	position: fixed;
	background-color: #484848;
	width: 100%;
	height: 10%;
	text-align: center;
	padding-bottom: 5px;
}



#footer li {
	display: inline-block;
	margin-right: 10%;
	font-size: 1.5em;
	}



@media only screen and (max-width: 800px) {
	body {
		background-image: revert;
		background-color: #484848;
	}



	div.content { background-color: revert; }

}