body {
  background: linear-gradient(to bottom, #ffffff, #e8d7f7);
}

.post {
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.post-header {
  width: 100%;
  display: flex;
  gap: 5%;
  align-items: center;
}

.post-image-parent {
  width: 50%;
}

.post-image {
  width: 100%;
  border-radius: 8px;
}

.post-title {
  width: 50%;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-direction: column;
}

.post-title > a {
  font-size: 32px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 800;
  color: #331c08;
}

.post-title p {
  font-weight: bold;
}

@media (max-width: 900px) {
  .post-header {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .post-image-parent {
    width: 100%;
  }
  .post-title {
    width: 100%;
  }

  .post-title > a {
    font-size: 30px;
    display: flex;
    justify-content: center;
  }
}

.post-title > a:hover {
  color: var(--main-color);
}

.post-title .post-date-section {
    display: flex;
    gap: 40px;
}

.post-body {
  padding: 0 10%;
  max-width: 1100px;
  padding-bottom: 40px;
  margin: 0 0 25px 0;
  border-bottom: 1px solid gray;
}

.post-body img {
  max-width: 100%;
  height: auto;
}

.post-body p,
span {
  color: black;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .post-body {
    padding: 0;
  }
}

.home-button-parent {
  width: 100%;
  margin: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-button-parent button {
  outline: none;
  border: none;
  padding: 10px 80px;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(40deg, #8400ff, #ff5353);
  border-radius: 24px;
  box-shadow: 0 2px 17px #a415d169;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
}

.home-button-parent button:hover {
  background: linear-gradient(40deg, #9c32ff, #fd5e5e);
}
