body {
	background-color: #323639;
	color:#F9F9F9;
	text-shadow: 1px 1px #666;
}

a:link, a:visited, a:hover, a:active {
	text-decoration:none;
	color:#F9F9F9;
}

.container {
	padding: 20px;
	background-color: #474D51;
}

.header h1 {
	margin-bottom:0;
	font-weight:bold;
	font-size: 45pt;
}

.header img {
	margin-right: 20px;
}

.section {
	margin-top:30px;
}

.nav {
	font-weight:bold;
	text-align:center;
	font-size:25pt;
	background-color:#555C60;
}

.icons {
	text-align:center;
	font-size:1.2em;
}

.icons img {
	max-width:96px;
}

p.console {
	font-family:Consolas, "Lucida Console", Monaco, monospace;
}

p.console:after {
  content: "";
  display: inline-block;
  background-color: #FFF;
  vertical-align: bottom;
  width: 8px;
  height: 4px;
  margin-bottom:4px;
  margin-left: 1px;
  -webkit-animation: blink 1s step-end infinite;
  animation: blink 1s step-end infinite;
}

@-webkit-keyframes blink {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@keyframes blink {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/

/* Mobile */
@media (max-width: 549px) {
	.header {
		text-align: center;
	}
	.header img {
		min-width:200px;
		float:none;
		margin-left:auto;
		margin-right:auto;
	}
	.icons {
		font-size:20pt;
	}
	.icons img {
		min-width:175px;
	}
	.icons span {
		padding-bottom:230px;
	}
	p.console:after {
		display:none;
	}
	p.console {
		font-family:inherit;
	}
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}