body {
    background: #f0f6f8;
    font-family: 'Georgia', serif;
    margin: 40px;
    color: #333;
    display: flex;
    justify-content: center;
}

.poem-container {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px 40px;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    font-size: 2.4rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

h2 {
    font-weight: normal;
    font-style: italic;
    text-align: center;
    color: #7f8c8d;
    margin-top: 0;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 20px;
    white-space: pre-line;
}

em {
    color: #c0392b;
    font-style: italic;
}

strong {
    color: #2980b9;
}

button {
    margin-top: 25px;
    padding: 10px 20px;
    font-size: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

button:hover {
    background: #2980b9;
}