body {
  background: linear-gradient(#7132a1, #cad9eb);
}

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

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 10px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 200px;
  width: 60%;
}

.block-one {
  background: linear-gradient(#dd6036, #f7c3a2);
  padding: 10px;
  text-align: center;
}

.subtitle {
  font-size: 35px;
  font-weight: bold;
}

.distance {
  color: white;
}

.text-body {
  margin-top: 0;
  color: black;
  font-size: 25px;
  font-weight: bold;
}

.email {
  font-size: 25px;
  font-weight: bold;
}

.block-two {
  grid-column: 2;
  grid-row: 1/3;
}

.block-three {
  grid-column: 3;
  grid-row: 1/3;
  background: linear-gradient(#ded433, #f1f58c);
  padding: 10px;
  text-align: center;
}

.face {
  color: #800080;
}

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

  .title {
    font-size: 25px;
  }

  .subtitle {
    font-size: 25px;
  }

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