.post-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 !important;
}

.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.banner {
  width: 100%;
  max-height: 225px;
  object-fit: cover;
}

.post-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  max-width: 550px;
  padding: 1.25rem;
}

.post-title {
  text-align: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  margin-bottom: 2rem;
  width: 100%;
}

.post-descp {
  width: 100%;
  text-align: left;
  font-family: "Outfit", sans-serif;
}

.post-descp img {
  margin: 1rem 0;
  width: 100%;
  border-radius: 12px;
  box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.3);
}

code {
  font-family: "Outfit", sans-serif;
  background: #434958;
  padding: .2rem .45rem;
  color: #0ae20a;
  font-style: italic;
}

.actions-container {
  position: absolute;
  top: 0;
  left: 0;
  padding: .35rem;
  padding-right: .55rem;
  background: #ffffffd8;
  border-end-end-radius: 12px;
}

.back-link {
  font-size: 1.22rem;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  color: #ff2121;
}

.actions-container:hover .back-link {
  text-decoration: underline;
}

@media (max-width: 350px) {
  .post-title {
    font-size: 1.75rem;
  }
  .actions-container {
    position: fixed;
  }
}

@media (max-width: 288px) {
  .post-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 250px) {
  .post-title {
    font-size: 1.25rem;
  }
  .actions-container {
    padding: .15rem;
    padding-right: .35rem;
  }
  .back-link {
    font-size: 1.05rem;
  }
}

@media (max-width: 222px) {
  .post-title {
    font-size: 1rem;
  }
}

@media (max-width: 190px) {
  .post-content {
    padding: .35rem;
  }
  .post-title {
    font-size: .65rem;
  }
}

@media (max-width: 175px) {
  .post-content {
    padding: .18rem;
  }
}