body {
  background-color: #d9d9d9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
  margin-top: 20px;
  margin-bottom: 120px;
  width: 60%;
}

.block-one {
  margin: auto;
  margin-bottom: 0px;
  text-align: right;
}

.block-two {
  background-color: #009999;
  padding: 0px 20px 10px 20px;
}

.title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.1;
  text-shadow: 1px 1px 1px #a5a5a5;
}

.list {
  padding-left: 20px;
  color: white;
}

.text-end {
  color: white;
  font-size: 16px;
}

.block-three {
  margin: auto;
  margin-bottom: 0px;
}

.block-four {
  display: none;
}

@media screen and (max-width: 800px) {
  .grid {
    display: flex;
    flex-direction: column;
    width: 90%;
  }
  .block-one {
    display: none;
  }
  .block-three {
    display: none;
  }
  .block-four {
    display: block;
  }

  .title {
    font-size: 25px;
  }

  .list {
    font-size: 16px;
  }

  .text-end {
    font-size: 14px;
  }
}
