:root {
    --bg-color: #fcfcfc;
    --text-color: #333;
    --accent-color: #7a7a7a;
    --font-serif: 'Georgia', 'Times New Roman', serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-serif);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    max-width: 800px;
    width: 100%;
}

.speech {
    text-align: left;
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1.5rem;
}

.excerpt {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
    hyphens: auto;
}

.excerpt:last-child {
    margin-bottom: 0;
}

.excerpt-container {
    margin-bottom: 3rem;
}

footer {
    text-align: right;
    margin-top: 3rem;
    font-style: italic;
    color: var(--accent-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

cite {
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
}

.date {
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .excerpt {
        font-size: 1.2rem;
    }
}