html {
	height: 100%;
}

body {
	background-image: url('images/background.jpg');
	background-size: cover;
	background-color: #000000;
	background-repeat: no-repeat;
	background-position: center;
	height: 100%;
}
.footer {
	color: #ffffff;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(50, 0, 0, 0.7);
	text-align: center;
	padding: 1em 0;
}

/* 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;
  background-color: #ff0000;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0px;
  bottom: 0px;
  background-color: #ff0000;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #00cc00;
}

input:focus + .slider {
  box-shadow: 0 0 1px #00cc00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

/* Rounded sliders */
.slider.round {
  border-radius: 50%;
}

.slider.round:before {
  border-radius: 50%;
}
