/* 内容 */
.post-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-title-box {
  border: 2px solid #898d8c;
  border-radius: 50vh;
  background-color: #f0ffe3;
  z-index: 1;
  padding: 0.5rem;
}

.post-title {
  font-size: 1.5rem;
  text-align: center;
}

.post-content-box {
  font-size: 1.25rem;
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 3rem;
  box-shadow: 1.5rem 1.5rem 0 #898d8c;
  padding: 3rem;
  display: grid;
  gap: 1rem;
  z-index: 1;
}

.button-back {
    text-align: right;
}
