body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #938c80;
    color: #333;
}

header {
    background-color: #4c4c4c;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

section {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 2em;
    margin-bottom: 5px;
    color: #4c4c4c;
}

section p {
    line-height: 1.6;
    font-size: 1.1em;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

ul li a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #4c4c4c;
    color: white;
    margin-top: 20px;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto; 
    border-radius: 8px;
}

.left {
    flex: 1;
    padding-right: 5px;
    align-self: flex-end;
}

.right {
    flex: 1;
    padding-left: 5px;
    max-width: 25%;
}

.summary {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.post-image {
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    section {
        padding: 15px;
        margin-top: 15px;
    }

    section h2 {
        font-size: 1.8em;
    }

    section p {
        font-size: 1em;
    }

    footer {
        padding: 15px 0;
    }

    .container {
        flex-direction: column;
    }

    .right {
        flex-basis: 100%; 
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }

    header p {
        font-size: 0.9em;
    }

    section {
        padding: 10px;
        margin-top: 10px;
    }

    section h2 {
        font-size: 1.5em;
    }

    section p {
        font-size: 0.9em;
    }

    footer {
        padding: 10px 0;
    }

    .container {
        flex-direction: column;
    }

    .right {
        flex-basis: 100%; 
    }
}