.post {
    color: white;
    border-radius: 10px;
    padding: 40px;
    position: relative;
    text-align: center;
    width: 600px; /* Increased width */
    height: 400px; /* Increased height */
}
.post p {
    color: white;
    flex: 1;
    margin-left: 10px;
}
.post h1 {
    color: white;
    flex: 1;
    font-size: 18px;
    margin-left: 10px;
}
.post img {
    max-width: 300px;
    height: auto;
    border-radius: 5px;
}
.post img:hover {
    transform: scale(2.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.image-title {
    color: white;
    font-size: 14px;
    padding: 2px 5px;
    border-radius: 3px;
}
.tag, .status {
    background-color: rgb(138, 14, 150);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin: 5px;
}
.status {
    background-color: rgb(255, 0, 43);
}
.tag-container {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}
.post-area {
    padding: 20px;
    background-color: #050505;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: flex;                /* Enables Flexbox */
    justify-content: center;      /* Centers content horizontally */
    align-items: center;          /* Centers content vertically */
    text-align: center;   
}