* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
}

.wrapper {
  height: 100vh;
  width: 100vw;
}

.container-left {
  display: inline-block;
  width: 60%;
  padding: 136px;
  margin-top: 15%;
}

.container-right {
  display: inline-block;
  background: rgba(93, 93, 95, 0.16);
  height: 100vh;
  width: 40%;
  position: absolute;
}

img {
  position: relative;
  top: 25%;
  right: 130px;
}

h1 {
  color: #5d5d7d;
  font-size: 70px;
  font-weight: 400;
  line-height: 80px;
  width: 368px;
}

p {
  color: #5d5d7d;
  font-size: 28px;
  font-weight: 400;
  line-height: 48px;
  width: 540px;
  opacity: 0.6;
  margin-top: 15px;
  margin-bottom: 15px;
}

button {
  background-color: #9499ea;
  width: 269px;
  height: 62px;
  border-radius: 32px;
  color: #fff;
  border: none;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

button:active {
  opacity: 0.5;
}

a {
  color: #5d5d7d;
  font-size: 28px;
  font-weight: 400;
  margin-right: 41px;
  line-height: 41px;
  cursor: pointer;
}

a:nth-child(2) {
  opacity: 0.4;
}

a:hover {
  opacity: 0.4;
}

a:active {
  opacity: 0.8;
}

header {
  margin-left: 57px;
  margin-top: 24px;
}

@media screen and (max-width: 900px) {
  .container-left {
    width: 100%;
    height: 50%;
    padding: 0;
    margin: 0;
  }

  .container-right {
    display: block;
    height: auto;
    width: 100%;
    position: static;
    padding: 40px;
  }
  img {
    position: static;
    max-width: 90%;
  }

  header {
    display: none;
  }

  h1 {
    font-size: 36px;
    line-height: 52px;
    margin: 50px 50px 0 50px;
    width: auto;
    text-align: center;
  }

  p {
    margin: 15px 40px;
    width: auto;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }

  button {
    margin: 0 auto;
    display: block;
  }
}
