body {
  background-color: #d9d9d9;
}

main {
  margin: auto;
  margin-top: 30px;
  width: 70%;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 40px;
}

.block {
  display: flex;
  align-items: center;
}

.number {
  font-family: Arial, sans-serif;
  font-size: 114px;
  font-weight: bold;
  text-shadow: 3px 3px 3px gray;
  margin: 0 0 0 0;
}

.one {
  color: #595959;
}

.text {
  color: #002060;
  margin: 0 5px 0 10px;
}

.text-red {
  color: #c00000;
}

.two {
  color: #404040;
}

.three {
  color: #262626;
}

.text-block {
  width: 50%;
  margin: auto;
  margin-top: 50px;
  padding: 10px 0px 10px 0px;
  border: #385d8a 3px solid;
  background: linear-gradient(#dce5f4, #9eb8e5);
  text-shadow: 2px 2px 2px #a5a5a5;
  text-align: center;
}

.text-block-one {
  font-size: 22px;
  font-weight: bold;
}

.text-block-two {
  color: #c00000;
  font-size: 30px;
  font-weight: bold;
}

.image-responsive {
  display: block;
  width: 60%;
  margin: auto;
}

@media screen and (max-width: 800px) {
  main {
    margin-top: 10px;
    width: 90%;
  }
  .grid {
    display: flex;
    flex-direction: column;
  }
  .text-block {
    width: 100%;
  }

  .text {
    font-size: 16px;
  }

  .image-responsive {
    width: 100%;
  }
}
