@charset "utf-8";

html, body {
	background: url('static/isometric-grid.png');
	min-height: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}

.container {
	background: white;
	max-width: 840px;
	margin: 0 auto;
	min-height: 100%;
	display: grid;
	border-left: 1px solid #deddd5;
	border-right: 1px solid #deddd5;
	grid-template-rows: auto auto 1fr auto;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.6);
        min-width: 708px;
}

.intro {
	padding: 0 1rem;
	background-color: #dad9d5;
	border-top: 1px solid #deddd5;
	border-bottom: 1px solid #deddd5;
}

.content {
	padding: 0 1rem;
}

.content > h2 {
	margin-top: 1rem;
}

p {
	margin-bottom: 0.5rem;
}

footer {
	margin-top: 1rem;
	padding: 1rem;
	color: grey;
	font-size: 0.9em;
}

h1, h2, h3 {
	text-align: center;
	margin-top: 0;
	text-shadow: 1px 1px 0 white;
}

h1 {
	padding-top: 1rem;
}

h2 small {
	display: block;
}

pre {
	padding: 0.5rem;
	margin-top: 0;
	background: #eee;
	white-space: pre-wrap;
	border: 1px solid #deddd5;
}

.well {
	background: white;
	padding: 1rem;
}

.well ol {
	margin: 0;
	padding-left: 1rem;
}

.well ol pre {
	margin-bottom: 0;
}

.well ol li {
	margin-bottom: 0.5rem;
}

.wells .well {
	margin-bottom: 1rem;
}

.wells .well:last-child {
	margin-bottom: 0;
}

pre {
	overflow-x: auto;
}

.magic {
	display: none;
}

@media(min-width: 1080px) {
	.hardwrap {
		max-width: 75%;
	}
}

.content {
	display: flex;
	flex-direction: column;
}

.content label, .content .button {
	background: #f64d27;
	color: white;
	text-decoration: none;
	padding: 0.25rem;
	cursor: pointer;
	border: 1px solid #ab2e14;
	align-self: flex-end;
	margin-top: 0.5rem;
}

.alert, .tip {
	padding: 0.5rem;
	margin-bottom: 0.5rem;
	border-width: 1px;
	border-style: solid;
}

.alert {
	color: white;
	background: #f64d27;
	border-color: #ab2e14;
}

.tip {
	color: #004085;
	background: #cce5ff;
	border-color: #b8daff;
}

.alert a {
	color: white;
}

@media (max-width: 700px) {
  .container {
    min-width: unset;
  }

  pre {
    max-width: 100%;
  }
}

code {
	white-space: nowrap;
}
