header {
	background-color: #0e3b43;
	color: white;
	text-align: center;
	padding: 1em;
}
nav {
	background-color: #357266;
	color: #ffe2c2;
	overflow: hidden;
}
body {
	background-color: #0f0f0f;
}
aside{
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 20px;
	background: #bf6900;
}
aside ul {
	list-style-type: none;
	padding: 0;
}
article {
	-webkit-flex: 3;
	-ms-flex: 3;
	flex: 3;
  	background-color: #0f0f0f;
  	padding: 10px;
}
section {
	display: -webkit-flex;
	display: flex;
}
@media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
div.sidebar {
	float: left;
	width: auto;
	padding: 10px;
	background-color: #bf6900;
}
div.sidebar div{
	color: #ffe2c2;
	font-size: 140%;
}
form {
	background-color: #0f0f0f;
}
.flex-container {
	display: flex;
	background-color: #0f0f0f;
}
.flex-container > div {
	background-color: #0f0f0f;
	margin: 10px;
	padding: 20px;
	font-size: 16px;
}
.controls {
  visibility: hidden;
  opacity: 0.5;
  width: 400px;
  border-radius: 10px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -200px;
  background-color: black;
  box-shadow: 3px 3px 5px black;
  transition: 1s all;
  display: flex;
}
.player:hover .controls,
.player:focus-within .controls {
  opacity: 1;
}
@font-face {
  font-family: "HeydingsControlsRegular";
  src: url("fonts/heydings_controls-webfont.eot");
  src:
    url("fonts/heydings_controls-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/heydings_controls-webfont.woff") format("woff"),
    url("fonts/heydings_controls-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
button::before {
  font-family: HeydingsControlsRegular;
  font-size: 20px;
  position: relative;
  content: attr(data-icon);
  color: #aaaaaa;
  text-shadow: 1px 1px 0px black;
}
.timer {
  line-height: 38px;
  font-size: 10px;
  font-family: monospace;
  text-shadow: 1px 1px 0px black;
  color: white;
  flex: 5;
  position: relative;
}
.timer div {
  position: absolute;
  background-color: rgb(255 255 255 / 20%);
  left: 0;
  top: 0;
  width: 0;
  height: 38px;
  z-index: 2;
}
.timer span {
  position: absolute;
  z-index: 3;
  left: 19px;
}
index {
	height: 100vh;
	display: block;
	box-sizing: border-box;
}
footer {
	background-color: #3a0e12;
	color: white;
	text-align: center;
	padding: 1em;
}
pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}
legend {
	background-color: #0f0f0f;
	color: white;
}
label{
	color: white;
}
code{
	color: white;
}
table, th, tr, td {
  border: 1px solid white;
  border-collapse: collapse;
}
th, tr, td {
  border: 1px solid white;
  border-radius: 10px;
	overflow: auto;
}
table {
  table-layout: fixed;
  width: 75%;
  color: white;
}
th:nth-child(1), td:nth-child(1) {
  width: 35%;
}
th:nth-child(2), td:nth-child(2) {
  width: 30%;
}
th:nth-child(3), td:nth-child(3) {
  width: 10%;
}
td {
	color: white;
}
th {
	color: white;
	text-align: left;
}
figure {
	display: table
}
figcaption {
	color: white;
	display: table-caption; 
	caption-side: bottom;
	font-style: italic;
}
h1 {
    color: white;
}
h2 {
    color: white;
}
h3 {
    color: white;
}
h4 {
    color: white;
}
h5 {
    color: white;
}
h6 {
    color: white;
}
li {
    color: white;
}
p {
    color: white;
}
a:link, a:visited {
  color: #ffe2c2;
  text-decoration: underline;
}
a:hover {
  color: white;
  text-decoration: underline;
}
