.post-container {
  padding-top: 5px;
}

.main-image {
  width: 100%;
  border-radius: var(--main-rounding);
}

.post-container img {
  width: 100%;
  max-width: 700px;
  border-radius: var(--main-rounding);

  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.post-container p a {
  text-decoration: none;
  color: var(--main-color);
  font-weight: 500;
  border-radius: 5px;
  padding: 2px;
  padding-left: 3px;
  padding-right: 3px;
  margin-left: -3px;
  margin-right: -3px;
  transition: 200ms;
}

.post-container p a:hover {
  background-color: var(--main-color);
  color: white;
}

.post-info {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;

  margin-top: 5px;
}

.post-info h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.2rem;
  color: #fff;

  margin-bottom: 4px;
}