/**
 * CSS for HueHunt Description
 * Alexandre Andrieux @2015 (September)
 */

/** Fonts **/
@import url(//fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(//fonts.googleapis.com/css?family=Playball);
@import url(//fonts.googleapis.com/css?family=Poiret+One);
@import url(//fonts.googleapis.com/css?family=Open+Sans+Condensed:300);

/** Generic **/
* {
	margin: 0;
	padding: 0;
	white-space: nowrap;
	font-family: 'Yanone Kaffeesatz', sans-serif;
	font-family: 'Playball', sans-serif;
	font-family: 'Poiret One', sans-serif;
	font-family: 'Open Sans Condensed', sans-serif;
}
*:not(input) {
	/* No selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	/* No unwanted drag */
	-webkit-user-drag: none;
	user-drag: none;
	cursor: default;
}
.flexcol {
	display: -webkit-flex;/* Safari, douchebag */
	display: -ms-flex;/* IE <3 */
	display: flex;
	-ms-flex-flow: column nowrap;
	-webkit-flex-flow: column nowrap;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}
.flexrow {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-flex-flow: row nowrap;
	-webkit-flex-flow: row nowrap;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
}
h1, h2, h3, h4, h5, h6, p {
	text-align: center;
	color: #ddd;
}
p {
	white-space: pre-wrap;
	color: #bbb;
}
html,
body {
	height: 100%;
	width: 100%;
	background: #111;
}
body.flexcol {
	justify-content: flex-start;
}

/** Specific **/

/* Headline */
body > p {
	margin-top: 15px;
	font-size: 1.5em;
	font-weight: bold;
}

/* Logo */
/* (See logo.css) */

/* Desc */
#desc {
	width: 60%;
	margin: 5px auto 50px;
	/*min-height: 300px;*/
}
#desc h2, #desc h3 {
	text-shadow: 0px 0px 70px;
}
#desc h2 {
	font-size: 3em;
	margin-top: 40px;
}
#desc h3 {
	font-size: 2em;
	margin-top: 20px;
}
#desc p,
#desc strong {
	font-family: Open Sans, Verdana, Open Sans Condensed, Arial, sans serif;
}
#desc strong {
	color: #eee;
}
#desc p {
	margin-top: 5px;
}
#desc img {
	margin: 20px auto;
	border: solid #555 1px;
	border-radius: 3px;
	max-width: 100%;
}
#desc p.intro {
	margin-top: 40px;
	font-size: 1.4em;
}
#desc p.code {
	width: 70%;
	text-align: left;
	margin: 0px auto;
	padding: 2px 30px;
	background: #222;
}

/* Footer */
#footer {
  width: 100%;
  padding: 10px 0px;
}
#footer p {
  font-size: 1em;
  color: #555;
}
