body {
    font-family: Arial, sans-serif;
    background-color: #fce4ec; /* Um tom de rosa claro */
    color: #4b0082; /* Roxo escuro */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    padding: 20px;
}

main {
    width: 80%;
    max-width: 600px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-editor {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#post-text {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

#publish-btn {
    padding: 10px;
    background-color: #ff69b4; /* Rosa choque */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#publish-btn:hover {
    background-color: #ff1493; /* Rosa mais escuro no hover */
}

.posts-container {
    margin-top: 20px;
}

.post {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.post-date {
    font-size: 12px;
    color: #888;
}

footer {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    color: #4b0082;
}