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

.poster {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

header {
    background-color: #4a90e2;
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

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

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.content img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.text {
    max-width: 400px;
    text-align: left;
}

.text p {
    font-size: 1.1em;
    margin: 10px 0;
}

footer {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

footer p {
    margin: 5px 0;
}

footer p:last-child {
    margin-top: 10px;
    font-weight: bold;
}
