body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
}

#wrapper {
  position: relative;
  width: 100%;
  min-height: 55vw;
  overflow: hidden;
}

.layer {
  position: absolute;
  width: 100vw;
  min-height: 55vw;
  overflow: hidden;
}

.layer .content-wrap {
  position: absolute;
  width: 100vw;
  min-height: 55vw;
}

.layer .content-body {
  color: #fff;
  width: 25%;
  position: absolute;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  border-radius: 25px;
  line-height: 29px;
}

.layer img {
  position: absolute;
  width: 100%;
	height: 100%;
  top: 0%;
  left: 0%;
  bottom: 0%;
  transform: translate(-0%, -0%);
	z-index: -10;
}

.layer h1 {
  font-size: 2em;
}

.bottom {
  background: #222;
  z-index: 1;
}

.bottom .content-body {
  right: 5%;
}

.bottom h1 {
  color: #FDAB00;
}

.top {
  background: #EEE;
  color: #222;
  z-index: 2;
  width: 50vw;
}

.top .content-body {
  left: 5%;
  color: #222;
  background: rgba(255, 255, 255, 0.7);
  padding: 15px;
  border-radius: 25px;
  line-height: 29px;
}

.handle {
  position: absolute;
  height: 100%;
  display: block;
  background-color: #FDAB00;
  width: 5px;
  top: 0;
  left: 50%;
  z-index: 3;
}

.skewed .handle {
  top: 50%;
  transform: rotate(30deg) translateY(-50%);
  height: 200%;
  transform-origin: top;
}

.skewed .top {
  transform: skew(-30deg);
  margin-left: -1000px;
  width: calc(50vw + 1000px);
}

.skewed .top .content-wrap {
  transform: skew(30deg);
  margin-left: 1000px;
}

.button {
    background-color: #4CAF50; /* Green */
	border-radius: 4px;
    border: none;
    color: white;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
	-webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
	
}


.button:hover {
    background-color: #666; /* Green */
    color: #fff;
}
@media (max-width: 768px) {
  body {
    font-size: 65%;
  }
}
