body {
    margin: 0;
    font-family: 'Georgia', serif;
    background:#C7D3DB; /* soft pink */
    color: #3a2a2a;
}

.container {
    width: 70%;
    margin: auto;
    padding: 30px;
}

/* BACK BUTTON */
.back {
    text-decoration: none;
    color: #3e3630;
    font-size: 14px;
}

.back:hover {
    text-decoration: underline;
}

/* TITLE */
h1 {
    text-align: center;
    color: #3e3630;
    font-weight: normal;
    margin-bottom: 40px;
}

/* POST CARD */
.post {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(212, 140, 163, 0.2);
}

/* POST TITLE */
.post h2 {
    margin-top: 0;
    color: #3e3630;
}

/* DATE */
.date {
    font-size: 12px;
    color: #3e3630;
    margin-bottom: 15px;
}

/* IMAGE */
.post-img {
    width: 60%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* TEXT */
.post p {
    line-height: 1.6;
}