* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.subtitle {
    font-size: 1rem;
    color: #555;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#poems-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.poem {
    border-bottom: 1px solid #ccc;
    padding-bottom: 1.5rem;
}

.poem:last-child {
    border-bottom: none;
}

.poem h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.poem .text {
    white-space: pre-wrap;
    font-size: 1.1rem;
    font-style: italic;
    color: #222;
}

footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    .poem h2 {
        font-size: 1.2rem;
    }
    .poem .text {
        font-size: 1rem;
    }
}