body {
  background-color: #d9d9d9;
}

.grid {
  display: grid;
  justify-content: center;
  grid-template-columns: 40% 30%;
  column-gap: 10px;
  margin: auto;
  margin-top: 20px;
  width: 70%;
}

.block-one {
  background: linear-gradient(#7132a1, #fcfdfe);
  padding: 10px;
  margin-bottom: 100px;
}

.title {
  text-align: center;
  line-height: 0.6;
  color: black;
  font-size: 45px;
  font-weight: bold;
}

.subtitle {
  font-size: 26px;
}

.text-red {
  color: red;
  font-size: 26px;
}

.text-body {
  color: black;
  font-size: 24px;
  padding-left: 20px;
}

.text-bold {
  font-size: 24px;
  font-weight: bold;
}

.block-two {
  align-self: end;
}

@media screen and (max-width: 800px) {
  .grid {
    width: 90%;
    display: flex;
    flex-direction: column;
  }
  .block-one {
    margin-bottom: 10px;
  }
  .block-two {
    display: block;
    text-align: center;
    margin: auto;
    width: 90%;
  }

  .title {
    font-size: 40px;
    font-weight: bold;
  }

  .subtitle {
    font-size: 20px;
  }

  .text-red {
    font-size: 20px;
  }

  .text-body {
    font-size: 18px;
  }

  .text-bold {
    font-size: 18px;
  }
}
