html,
body {
  padding: 0%;
  margin: 0%;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}

h1 {
  font-size: 4rem;
  color: #fff;
  position: absolute;
  left: 15%;
  top: 15%;
  white-space: nowrap;
}

.button {
  display: block;
  position: absolute;
  left: 15%;
  top: 50%;
  height: 2.5rem;
  padding-top: 1.3rem;
  width: 15rem;
  text-align: center;
  color: #fff;
  border: #fff solid 0.2rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.button:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.5);
}

.split {
  position: absolute;
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.split.top {
  top: 0;
  background: url(../img/main/developer.jpg) center center no-repeat;
  background-size: cover;
}

.split.top:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.5);
}

.split.bottom {
  bottom: 0;
  background: url(../img/main/designer.jpg) center center no-repeat;
  background-size: cover;
}

.split.bottom:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.5);
}

.split.top,
.split.bottom,
.split.top:before,
.split.bottom:before {
  transition: 500ms all ease-in-out;
}

.hover-top .top {
  height: 75%;
}

.hover-top .bottom {
  height: 25%;
}

.hover-top .bottom:before {
  z-index: 2;
}

.hover-bottom .bottom {
  height: 75%;
}

.hover-bottom .top {
  height: 25%;
}

.hover-bottom .top:before {
  z-index: 2;
}

@media screen and (max-width: 1680px) {
  h1 {
    font-size: 2.75rem;
  }
}

@media screen and (max-width: 736px) {
  h1 {
    font-size: 2rem;
  }

  .button {
    width: 12rem;
  }
}
