/* styles.css */

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header, footer {
    background: linear-gradient(to right, #ff7e5f, #4789e7);
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 2em;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

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

.section-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

article, section {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h2, h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

p {
    font-size: 0.9em;
    margin: 0;
}

footer {
    padding: 10px;
    text-align: center;
}