
body, html { 
  margin: 0;
  padding:0;
  font-size: 100%;
	color: ghostwhite;
  background-color: black;
}

/* unvisited link */
a:link {
    color: #4da6ff;
}

/* visited link */
a:visited {
    color: #1a8cff;
}

/* mouse over link */
a:hover {
    color: #33e4ff;
}

/* selected link */
a:active {
    color: yellow;
}

#pagelogo {
	max-height: 200px;
	margin: -50px -70px -50px;
	text-align: center;
}

#gamestats {
	display: block;
	max-height: 195px;
	text-align: center;
	font-family: "Courier New", Courier, monospace;
	font-variant: small-caps;
	font-size: 1.2em;
}

#arrow  {
	max-height: 60px;
	margin: 20px;
	transform: rotate(180deg);
	float: right;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: black; /*#003366;*/
}

.flex-container > div {
  background-color: black;
  margin: 10px;
  padding: 0px;
	min-width: 256px;
}

/*--------------------------------------------*/

#backgif {
	width: 100%;
	position: relative;
}

#pageback {
	width: 100%;
	position: absolute;
	top: 0;  left: 0;
	z-index: 1;
}

#gameplaygif {
	position: absolute;
	margin-top: 6%;
	left: 42%;
	width: 41%;
	z-index: 2;
}

#pitch {
	width: 100%;
	font-family: Arial, Verdana, sans-serif;
	font-size: 1.4em;
	text-align: center;
	margin-top: 42%;
}

@media only screen and (max-width: 600px) {

	#pageback {
		display: none;
	}

	#gameplaygif {
		position: absolute;
		margin-top: 0;
		left: 0;
		width: 100%;
		z-index: 2;
	}

	#pitch {
		width: 100%;
		font-family: Arial, Verdana, sans-serif;
		font-size: 1.4em;
		text-align: center;
		margin-top: 56%;
	}
}

/*--------------------------------------------*/

#pitch img {
	width: 90%;
}

/*--------------------------------------------*/

#status-details {
	margin: 0 auto 10%;
	max-width: 45em;
	font-family: Arial, Verdana, sans-serif;
	font-size: 1.0em;
	text-align: left;
}

#status-details p {
  margin-left: 2em;
}

#status-details h1, h2, h3 {
  color: orange;
}

/*--------------------------------------------*/

#devlog {
	margin: 0 auto 10%;
	max-width: 35em;
	font-family: Arial, Verdana, sans-serif;
	font-size: 1.0em;
	text-align: left;
}

#devlog details {
	font-size: 1.2em;
	margin-left: 2em;
}

#devlog summary {
	font-weight: bold;
	color: orange;
}

#devlog div {
	margin-left: 2em;
}