.post {
    display: flex;
    background: #686868;
    color: white;
    flex-direction: column;
    justify-content: left;
    width: 100%;
    border-radius: 15px;
    padding-bottom: 15px;
    padding: 10px;
}

.post img {
    width: 70%;
    height: auto;
    margin: 15px auto;
    display: flex;
    justify-content: center;
    border-radius: 15px;
}

.post p {
    text-align: left;
    width: 100%;
    padding: 5px;
    font-size: 18px;
}

#moreText1, #moreText2, #moreText3, #moreText4 {
    display: none;
}

  button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 5px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #cc5d94;
  }
