*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior:smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust:100%;
}

body {
    line-height: 1.5;
    overflow-wrap: break-word;
    font-family: Sen, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

header, main, footer {
    width: 100%;
    height: auto;
}

nav, section, aside, article {
    display: block;
    width: 100%;
    height: auto;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

nav > ul, nav > ol {
    display: flex;
    gap: 1rem;
}

aside nav > ul, aside nav > ol {
    display: flex;
    flex-direction: column;
}

button, input, textarea, select, iframe {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    outline:none;
}

figure {
    display: block;
    text-align: center;
}

figure > img {
    width: 100%;
    height: auto;
}

figcaption {
    font-size: .875rem;
    padding: .25rem 0;
    line-height: 1.4;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, p, q {
    font-size: 100%;
    font-weight: normal;
}

h1, h2, h3 {
    font-weight: 700;
    font-family: 'Roboto Slab', Georgia, 'Times New Roman', Times, serif;
}

h4, h5, h6 {
    display: none;
}

h1 {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

p, q {
    font-size: 1rem;
}

p > q {
    display: inline;
}

q {
    display: block;
}

:where(h1, h2, h3, p, q) + :where(h1, h2, h3, p, q) {
    margin-top: .8rem;
}

@media (max-width:768px) {
    h1, h2, h3 {
        font-weight: 600;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    p, q {
        font-size: .875rem;
    }

    :where(h1, h2, h3, p, q) + :where(h1, h2, h3, p, q) {
        margin-top: .75rem;
    }
}