html, body {
  height: 450px; width; 100%;
  margin: 0;
  padding; 0;
}

.wrap {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #120103;
  color: #fff;
  text-align: center;
}

header {
  background: #3e474f;
  box-shadow: 0 0.5em 1em #111;
  position:relative;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
}

header label {
  color: #fff;
  cursor: pointer;
  background-color:#0690AF;
  font-family:Arial;
  display: inline-block;
  line-height: 3.25em;
  font-size: 11px;
  font-weight: bold;
  padding: 0 1em;
}

header label2 {
  color: #fff;
  background-color:#2A94BC;
  cursor: pointer;
  font-family:Arial;
  display: inline-block;
  line-height: 2.25em;
  font-size: 1em;
  font-weight: bold;
  padding: 0 1em;
}

header label3 {
  color: #fff;
  background-color:#C74417;
  cursor: pointer;
  font-family:Arial;
  display: inline-block;
  line-height: 2.25em;
  font-size: 1em;
  font-weight: bold;
  padding: 0 1em;
}

header label4 {
  color: #fff;
  background-color:#A013DA;
  cursor: pointer;
  font-family:Arial;
  display: inline-block;
  line-height: 2.25em;
  font-size: 1em;
  font-weight: bold;
  padding: 0 1em;
}

header label:hover {
  background: #2e353b;
}

header label2:hover {
  background: #584142;
}

.slide {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 10;
  padding: 8em 1em 0;
  background-color: #120103;
  background-position: 50% 50%;
  background-size: cover;
  transition: left 0s 0.75s;
}

.slide-one {
  background-image: url(images/slide.png);
}

.slide-two {
  background-image: url(images/slide1.png);
}

.slide-three {
  background-image: url(images/slide2.png);
}

.slide-four {
  background-image: url(images/slide3.png);
}

[id^="slide"]:checked + .slide {
  left: 0;
  z-index: 100;
  transition: left 0.65s ease-out;
}

.slide h1 {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s 0.5s, opacity 0.5s;
}

[id^="slide"]:checked + .slide h1 {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s 0.5s;
}