body {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  line-height: 1.6;
  color: #495057;
  background: #f8f9fa;
  box-sizing: border-box;
}

*::before, *::after, * {
  box-sizing: inherit;
}

main {
  display: flex;
  max-width: 100%;
  width: 100%;
}

h1 {
  line-height: 1;
  margin-top: 15px;
}

.badge {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  color: #7DD0FF;
}

.container {
  position: relative;
  max-width: 50%;
  width: 100%;
  padding: 25px;
}
.container .content {
  width: 100%;
  max-width: 70%;
  position: absolute;
  top: calc(50% - 25px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: sans-serif;
  padding: 25px;
}
.container .content p {
  max-width: 450px;
  width: 100%;
}
.container .content p.cta {
  margin-top: 35px;
}
.container .content p a {
  color: #fff;
  font-weight: normal;
  background: #7DD0FF;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}

.container__left {
  max-width: 40%;
}
.container__left .logo {
  position: relative;
  z-index: 10;
  max-width: 50px;
  width: 100%;
}

.container__right {
  position: relative;
  max-width: 60%;
  width: 100%;
  height: 100vh;
  background: url("../background.jpg") no-repeat center;
  background-size: cover;
}
.container__right:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.container__right:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: -400px;
  top: 0;
  height: 100%;
  width: 500px;
  background: #f8f9fa;
  transform: skew(-10deg);
}

.credits {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 10px;
  font-size: 10px;
  font-family: sans-serif;
  color: rgba(255, 255, 255, 0.4);
}
.credits a {
  color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 1000px) {
  .container .content {
    width: 100%;
    max-width: 90%;
  }
}
@media screen and (max-width: 830px) {
  .container__left {
    max-width: 100%;
    width: 100%;
    height: 100vh;
  }
  .container__left .content {
    display: block;
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .container__right {
    display: none;
  }
}
@media screen and (max-width: 360px) {
  .container__left {
    padding: 15px;
  }
  .container__left .content {
    padding: 25px 10px;
  }
}