/* Reset */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* Base styles */
body {
    font-family: 'Georgia', serif;
    background: #f4f1ec; /* light parchment-like color */
    color: #222;
    line-height: 1;
    padding: 0;
    margin: 0;
    text-align: centre;
}

/* Navigation */
header {
    background: #222;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem;
    margin: 0 auto;
    z-index: 10;

}

header .logo {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Story box */
.Poem {
    max-width: 700px;
    margin: 4rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
}

.Poem h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.Poem .byline {
    text-align: center;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
}

.Poem p {
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

/* Footer */
footer {
    background: rgba(30, 30, 30, 1);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin: 0;
}
