:root {
    font-size: 20px;
    font-family: sans, sans-serif;
    color: #444
}

body {
    margin: 0
}

* {
    box-sizing: border-box
}

h1 {
    margin: 4rem 0;
    font: normal 2.5rem elite;
    color: #000
}

a {
    text-decoration: none;
    transition: color .2s;
    color: #07d
}

q {
    font-family: cochin
}

i {
    font: normal 1rem slant
}

footer {
    margin-top: 4rem;
    font-size: .8rem;
    padding: 1rem;
    background-color: #eee;
    border-top: 1px solid #ccc;
    color: #555
}

footer div {
    float: right
}

#top {
    height: 4rem;
    border-bottom: 1px solid #aaa;
    box-shadow: 0 0 10px #888;
    position: sticky;
    top: 0;
    background-color: #fffc;
    backdrop-filter: blur(5px);
    z-index: 2
}

#top div {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 1rem
}

#top a {
    color: #555
}

#top a:first-child {
    font: normal 1.5rem elite;
    display: block;
    padding: .3rem 1rem 0 0
}

#top a:hover, #top a#this {
    color: #aaa
}

.main {
    max-width: 84rem;
    margin: 0 auto;
    padding: 0 6rem
}

@font-face {
    font-family: strong;
    src: url(strong.woff2), url(strong.woff)
}

@font-face {
    font-family: elite;
    src: url(elite.woff2), url(elite.woff)
}

@font-face {
    font-family: sans;
    src: url(sans.woff2), url(sans.woff)
}

@font-face {
    font-family: cochin;
    src: url(cochin.woff2), url(cochin.woff)
}

@font-face {
    font-family: slant;
    src: url(slant.woff2), url(slant.woff)
}

@media screen and (max-width: 60rem) {
    :root {
        font-size: 16px
    }

    .main {
        padding-left: 4rem;
        padding-right: 4rem
    }
}

@media screen and (max-width: 30rem) {
    :root {
        font-size: 14px
    }

    .main {
        padding-left: 2rem;
        padding-right: 2rem
    }
}