:root {
    --light-primary: #fff;
    --dark-primary: #121212;
    --link-light: #3c58b3;
}

@view-transition {
    navigation: auto;
}

html {
    font-size: 100%;
}

body {
    background: var(--light-primary);
    color: var(--dark-primary);
    font-family: -apple-system, BlinkMacSystemFont, "avenir next", avenir, "segoe ui", "helvetica neue", "Adwaita Sans", Cantarell, Ubuntu, roboto, noto, helvetica, arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-wrap: pretty;
}

img,
video {
    display: block;
    max-width: 100%;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    text-wrap: balance;
}

@media print {
    body {
        font-size: 8pt;
    }
}

a {
    color: var(--link-light);
}

a:visited,
a:hover,
a:focus {
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.15;
    font-weight: 700;
    margin-top: 2.30rem;
    margin-bottom: 0;
}

h1 {
    font-size: 2.027rem;
}

h2 {
    font-size: 1.802rem;
}

h3 {
    font-size: 1.602rem;
}

h4 {
    font-size: 1.424rem;
}

h5 {
    font-size: 1.266rem;
}

h6 {
    font-size: 1.125rem;
}

blockquote {
    font-style: italic;
}

.site-container {
    display: grid;
    text-align: center;
    min-height: 100vh;
    align-self: center;
    grid-template-rows: max-content 1fr max-content;
    grid-template-areas:
        "header"
        "content"
        "footer";
}

.site-header {
    grid-area: header;
    align-content: start;
}

.site-content {
    grid-area: content;
    align-content: center;
}

.site-footer {
    grid-area: footer;
    align-content: end;
}

.section-content {
    padding: 0 2rem;
}