body {
    font-family: 'Arial', sans-serif;
    background-color: #f4e5c3; /* A light brown reminiscent of paper posters */
    color: #2f2f2f; /* Almost black for good contrast */
    margin: 0;
    padding: 0;
}

header {
    background-color: #9c3d54; /* A deep red for a striking header */
    color: #fff; /* White text for contrast */
    padding: 20px 10px;
    text-align: center;
}

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

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

section {
    padding: 20px 10px;
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #d9d9d9; /* Light grey to indicate the image placeholder */
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    color: #2f2f2f;
}

footer {
    background-color: #2f2f2f; /* Almost black for the footer */
    color: #fff; /* White text for contrast */
    padding: 10px;
    text-align: center;
}


