body {
  background-color: #dad3cf;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.left {
  width: 50%;
  height: 100vh;
}

.container-left {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.container-left img {
  height: 80%;
  margin-right: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  height: 100vh;
}

.container-right {
  position: absolute;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  width: 600px;
  left: 100px;
}

.container-right h1 {
  font-size: 80px;
  font-weight: normal;
}

.container-right p {
  margin-left: 10px;
  margin-top: 1px;
  font-size: 30px;
  font-weight: 100;
  letter-spacing: 1px;
}

@media (max-width: 1250px) {
  body {
    flex-direction: column-reverse;
  }

  .left,
  .right {
    width: 100%;
  }

  .container-left,
  .container-left img,
  .container-right {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .container-right {
    position: static;
    margin-top: 100px;
  }
}
