body {
  position: relative;
  min-height: 100vh;
}
body .blog {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  padding-bottom: 143px;
}
@media screen and (max-width: 769px) {
  body .blog {
    padding-bottom: 187px;
  }
}
body .blog .center {
  width: 100%;
  max-width: 1200px;
  padding: 10px;
}
body .blog .center .post-image {
  height: 270px;
  margin-bottom: 2rem;
  background-size: cover;
}
body .blog .center .post-content p img {
  object-fit: contain;
  width: 50%;
  float: right;
  margin-left: 10px;
  max-height: 500px;
}
@media screen and (max-width: 769px) {
  body .blog .center .post-content p img {
    width: 100%;
    float: none;
    margin-left: 0;
    max-height: 400px;
  }
}
body #footer {
  position: absolute;
  bottom: 0;
}
