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

html {
    height: 100%;
}

h2,
h3,
h4 {
    margin-top: 1.00rem;
    margin-bottom: 0.25rem;
}

input, button, textarea, select {
    font: inherit;
}

ol {
    list-style-position: inside;
}

img {
    display: block;
    max-width: 100%;
}

.page {
    display: grid;
    grid-template-rows: 0.25fr 1fr 0.10fr;
    min-height: 100%;
    padding-inline: 1.00rem;
}

.page__header {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    gap: 2.00em;
    padding-block: 1.00rem;
}

.page__header__logo {
    width: 8em;
    aspect-ratio: 1 / 1;
    border: 1px solid black;
    border-radius: 100%;
}

.page__header__title {
    text-align: center;
}

.page__main {
    max-width: 65ch;
    margin-inline: auto;
}

.page__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 0.50rem;
    border-top: 1px solid black;
    font-size: 0.75rem;
}

.introductory_quote {
    text-align: justify;
    line-height: 1.75;
}

.introductory_quote::before,
.introductory_quote::after {
    font-size: 1.50rem;
    line-height: 0.50;
}

.introductory_quote::before {
    content: open-quote;
}

.introductory_quote::after {
    content: close-quote;
}

@media (max-width: 60em) {
    .page__header {
        flex-direction: column;
    }
}
