/* -- TAGS -- */
body {
	margin: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('background.png');
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #FFF;
	font-family: Ubuntu, Verdana, sans;
	font-size: 2em;
}

header {
	z-index: 999;
	position: fixed;
	top: 0;
	margin: 0;
	border: solid #666;
	border-width: 0 0 1px;
	width: 100%;
	background-color: #fff;
	padding: 0;
	color: #000;
	font-size: 1.8em;
}

footer {
	z-index: 999;
	position: fixed;
	bottom: 0;
	margin: 0;
	border: solid #BBB;
	border-width: 2px 0 0;
	width: 100%;
	background-color: #FFF;
	padding: 0;
	color: #000;
	font-size: 0.8em;
}

nav {
	display: flex;
}
nav ul {
	margin: auto;
}
nav ul li {
	display: inline;
	text-align: center;
}
nav a {
	flex: 1 1 100%;
	border: solid #666;
	border-width: 0 0 0 1px;
	padding: 10px 0;
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
}
nav a:first-child {
	margin: 0;
	border-width: 0;
}
nav a:hover {
	color: #FFF;
}

main {
	margin: auto;
	margin-top: 150px;
	margin-bottom: 100px;
	width: 90%;
}

h1 {
	font-variant: small-caps;
	font-size: 1.5em;
}

ul li {
	margin-top: 0.3em;
}

button {
	margin: 12px 5px;
	background-color: transparent;
	border: 0;
}
button a {
	display: inline-block;
	border-radius: 5px;
	border: 0;
/*background-color: rgba(64,137,194,0.85);*/
	background-color: rgba(0,152,219,0.85);
	width: auto;
	padding: 15px 20px;
	color: #FFF;
	font-size: 3em;
}
button a:hover, button a:active {
/*background-color: rgba(93,163,217,0.85);*/
	background-color: rgba(81,186,231,0.85);
	color: #FFF;
}

a {
	color: #0098DB;
/*	text-transform: uppercase;*/
	text-decoration: none;
	text-shadow: 0px 1px 0px rgba(0,0,0,0.3);
	font-variant: small-caps;
	font-weight: bold;
}
a:hover, a:active {
	color: #51BAE7;
}



/* -- CLASSES -- */
.tooltip {
	visibility: hidden;
	z-index: 1000;
	position: absolute;
	margin: 50px 0 0 -75px;
	border-radius: 5px;
	background-color: rgba(51, 51, 51, 0.4);
	padding: 5px;
	color: #fff;
	font-size: 0.6em;
}
a:hover .tooltip, a:active .tooltip {
	visibility: visible;
}



/* -- IDS -- */
#buttons {
	text-align: center;
}

#behrmedia {
	display: inline-block;
	position: relative;
	float: right;
	right: 15px;
	bottom: 11px;
	transform: translate(0%, 25%);
	font-size: 0.8em;
}
#by {
	display: inline-block;
	position: relative;
	float: right;
	bottom: 9px;
	transform: translate(-30%, 100%);
	font-size: 0.8em;
}

#lc {
	background: linear-gradient(to bottom, #BB3333 0%, #990000 100%);
}
#lc:hover, #lc:active {
	background: linear-gradient(to bottom, #BB3333 0%, #700000 100%);
}

#rs {
	background: linear-gradient(to bottom, #DD4814 0%, #a0320b 100%);
}
#rs:hover, #rs:active {
	background: linear-gradient(to bottom, #DD4814 0%, #7a2407 100%);
}

#rc {
	background: linear-gradient(to bottom, #20B8FB 0%, #12698E 100%);
}
#rc:hover, #rc:active {
	background: linear-gradient(to bottom, #20B8FB 0%, #0b465e 100%);
}

#pma {
	background: linear-gradient(to bottom, #FF9C08 0%, #AD690A 100%);
}
#pma:hover, #pma:active {
	background: linear-gradient(to bottom, #FF9C08 0%, #774605 100%);
}

#mon {
	background: linear-gradient(to bottom, #CDCDCD 0%, #787878 100%);
}
#mon:hover, #mon:active {
	background: linear-gradient(to bottom, #CDCDCD 0%, #515151 100%);
}



/* -- MEDIA QUERIES -- */
@media screen and (max-width: 1200px) {
	body {
		font-size: 1em;
	}
	footer {
		position: static;
		margin: 0;
		bottom: 0px;
		height: 160px;
	}
	main {
		margin-bottom: 200px;
	}
	button a {
		font-size: 2em;
	}

	#behrmedia {
		transform: translate(0%, 0%);
		margin-top: 10px;
		margin-bottom: 20px;
	}
	#by {
		transform: translate(-75%, -450%);
	}
}
