@import url('normalize.css');
@import url('skeleton.css');

html, body {
	height: auto;
	min-height: 100vh;	
}

html {
	background-color: black;
}

body {
	display: inline-block;
	width: 100%;
}

body:after {
	content: '';
	background-image: url('https://images.unsplash.com/photo-1518066000714-58c45f1a2c0a?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=3c11bb4d0a0cb5cf4133b2aa4f929f14&auto=format&fit=crop&w=1650&q=80');
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	opacity: 0.5;
	background-color: black;
}

p, h1, h2, h3, h4 {
	color: #ffffff;
}

p {
	font-size: 16px;
}

.title {
	margin-bottom: 50px;
	text-align: center;
}

.control-panel {
	
}

.control-panel h1 {
	font-size: 60px;

}
.control-panel p {
	font-size: 20px;

}

.stats .stat {
	font-weight: bold;
}



/* FORM SWITCH TOGGLE */
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 34px;
  background-color: #ffffff;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  border-radius: 50%;
  background-color: #000000;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #e4cab0;
}

input:focus + .slider {
  box-shadow: 0 0 1px #e4cab0;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}