/*
 * index.css and related content © 2018 Jordan Bowman unless designated otherwise.
 *
 * This file and related content are intended to be
 * used to render content delivered by jordo.org.
 * Any  other use prohibited without expressed
 * written consent from copyright owner.
 */
#jams {
	margin: 25% auto 10% auto;
}

.greeting {
	float: left;
}

.navigation {
	font-size: 1.25em;
	top: 2em;
	background-color: #222;
	height: 2em;
	margin-bottom: 2em;
	width: 99%;
	display: flex;
	flex-direction: row;
	align-items: center;
	position: fixed;
}

.navLeft {
	margin-left: 1%;
	flex: 2 0 0;
}

.navigation a {
	text-decoration: none;
	margin: 0 1em;
	background: #061D2A;
	padding: .75em;
	border-radius: 15px;
}

.messages {
	font-size: .75em;
	width: 75%;
	height: auto;
	background: black;
	border-radius: 10px;
	color: #00EE00;
	font-weight: bold;
	font-size: .9em;
	padding: 1%;
	text-align: center;
	margin: 5em auto;
	box-shadow:
		inset 1px 2px rgba(255,255,255,0.3),
		-1px 1px rgba(255,255,255,0.3),
		inset 2px -1px rgba(255,255,255,0.3),
		2px -1px rgba(255,255,255,0.3),
		inset 6px -6px 20px rgba(0,255,0,0.25),
		inset -6px -15px 10px rgba(100,255,100,0.25),
		inset 5px 20px 20px rgba(0,255,0,0.25);
}

body {
	background-color: #111;
	font: 99% sans-serif;
	color: silver;
	font-size: 1em;
	text-shadow: 1px 1px 1px black;

}

a {
	color: #A4A4A4;
}

a:hover, a:visited:hover {
	color: white;
}

a:visited {
	color: #0080FF;
}

h3 a {
	color: white;
}

h1,h2,h3,h4,h5,h6 {
	text-shadow: 2px 5px 5px rgba(0,0,0,0.2),
	             0px -2px 10px rgba(255,255,255,0.3);
}

button {
	font-size: small;
	font-weight: bold;
	text-shadow: -1px 2px rgba(50, 50, 50, .9);
	color: #00EE00;
	background: #111111;
	border-radius: 10px;
	border-color: #555555;
	box-shadow:
		0 2px 6px rgba(200,200,200,0.5),
		inset 0 10px rgba(125,125,125,0.1),
		inset 0 10px rgba(175,175,175,0.2),
		inset 0 -5px 20px rgba(0,255,0,0.25),
		inset 0 10px 10px rgba(0,255,0,0.25);
}