#posts {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  justify-content: center;
  gap: 40px;
  justify-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 30px;
  background: #050a07;
  width: 450px;
  padding: 20px;
}
.tile img {
  width: 60%;
  border-radius: 10px;
}
.tile h3 {
  color: #fff;
  font-family: "Readex Pro", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.tile p {
  color: #fff;
  text-align: justify;
  font-family: "Readex Pro", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 800px) {
    #posts{
      grid-template-columns: repeat(1, 1fr);
    }
    .tile {
        width: 80%;
    }
  }
