
html, body {
    height: 100%;
}

body {
    background-color: pink;
    display: flex;
    flex-direction: column;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.125rem;
    line-height: 1.65;
}

h1, h2 {
    font-family: 'Moirai One', system-ui;
    line-height: 1.2;
}

h1 {
    font-size: 6rem;
}

aside h1 {
    color: white;
    font-size: 8rem;
    margin: 2.5rem 1.75rem 0 0;
}

h2 {
    font-size: 4rem;
}

h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
}

main {
    flex: 1 0 auto;
    background: linear-gradient(90deg, darkgoldenrod 48%, #8D6D26 52%);
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 100%;
}

nav {
    flex-basis: 240px;
    margin-top: 4rem;
    /* border: 1px dashed blue; */
    background-color: #8D6D26;
    /* background: linear-gradient(90deg, goldenrod 10%, darkgoldenrod 90%); */
    color: white;
}

aside {
    flex-basis: 240px;
    /* border: 1px dashed green; */
    /* display: flex;
    justify-content: flex-end; */
    text-align: right;
    background: right -10px top 0px repeat-y url("edge.svg");
    background-size: auto 100vh;
}

section {
    flex-basis: 660px;
    /* border: 1px dashed red; */
    padding: 0 3rem;
    background-color: #8D6D26;
    color: white;
}

footer {
    flex-shrink: 0;
    margin: 1rem auto;
}

.bigtext, blockquote {
    font-size: 1.5rem;
    line-height: 1.5;
}

.smalltext {
    font-size: 1rem;
}

blockquote {
    font-style: italic;
}

.lightskyblue {
    color: lightskyblue
}

.plum {
    color: plum
}

.lightgoldenrodyellow {
    color: lightgoldenrodyellow
}