@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Ubuntu");
html,
body {
  height: 100%;
  background: linear-gradient(rgba(211, 219, 242, 0.8), rgba(211, 219, 242, 0.95)), url("https://images.pexels.com/photos/38070/pexels-photo-38070.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
}

.webpage {
  position: relative;
  margin: auto;
  display: block;
  margin-top: 1%;
  width: 75%;
  height: 95%;
  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;
  z-index: 1;
  -webkit-box-shadow: 10px 10px 18px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 18px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 18px 0px rgba(0, 0, 0, 0.75);
}

.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%);
}

.warning-icon {
  position: absolute;
  width: 95px;
  height: 95px;
  top: 10%;
  left: 10%;
  color: #ffffff;
}

.white-brand-box {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 15%;
  left: 15%;
  border: solid 6px #ffffff;
  z-index: 2;
}

.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;
  display:flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  font-family: "Ubuntu";
  font-size: 16px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  
  box-shadow: -10px 10px 13px -2px rgba(0, 0, 0, 0.75);
}

@media all and (max-width: 600px) {
  .webpage {
    margin-top: 15%;
    width: 100%;
    height: 350px;
    z-index: 1;
  }

  .warning-icon {
    width: 45px;
    height: 45px;
    top: 15%;
  }

  .presents-text {
    font-size: 8px;
  }

  .title {
    font-size: 24px;
  }

  .cta-button {
    font-size: 8px;
  }
}