body {
  background-color: #c9d6ef;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  margin: auto;
  margin-top: 20px;
  width: 60%;
}

.block-one {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column: 1;
  background-color: #c9d6ef;
  padding: 10px;
  border: black 3px solid;
}

.text-one {
  text-align: center;
  color: black;
  font-size: 25px;
}

.block-two {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column: 2;
  padding: 10px;
  border: #000080 3px solid;
}

.text-two {
  text-align: center;
  color: #000080;
  font-size: 25px;
}

.text-block {
  width: 60%;
  margin: auto;
  margin-top: 10px;
}

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

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

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

  .text-block {
    width: 90%;
    font-size: 16px;
  }
}
