@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Ubuntu");
html, body {
  height: 100%;
  margin: 0;
  padding: 0;

}

.webpage {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(38, 38, 43, 0.85), rgba(38, 38, 43, 0.95)), url("https://images.pexels.com/photos/159306/construction-site-build-construction-work-159306.jpeg?h=420&auto=compress");
  background-size: cover;
 

}

.right-triangle {
  position: absolute;
  bottom: 0%;
  right: 0%;
  height: 100%;
  width: 50%;
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6)), url("https://images.pexels.com/photos/209235/pexels-photo-209235.jpeg?h=350&auto=compress");
  background-position: -64% 202%;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
} 


.presents-text {
  position: absolute;
  top: 25%;
  left: 10%;
  color: #A19E9F;
  font-family: "Open Sans Condensed";
  font-size: 16px;
  font-weight: 300;
}

.title {
  position: absolute;
  top: 25%;
  left: 10%;
  font-family: "Ubuntu";
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.cta-button {
  position: absolute;
  width: 25%;
  height: 10%;
  bottom: 25%;
  left: 10%;
  background: #4184C7;
  border-radius: 0%;
  border: none;
  padding: 10;
  font-family: "Ubuntu";
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  -moz-box-shadow: -10px 10px 13px -2px rgba(0, 0, 0, 0.75);
  box-shadow: -10px 10px 13px -2px rgba(0, 0, 0, 0.75);
}

.cta-button:hover {
  background: white;
  color: #4184C7;
  cursor: pointer;
}

@media all and (max-width: 600px) {
  .webpage {
    width: 100%;
    z-index: 1;
  }

  .presents-text {
    font-size: 8px;
  }

  .title {
    font-size: 24px;
  }

  .cta-button {
    font-size: 8px;
  }
}