* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    background: none;
    text-align: justify;
    text-decoration: none;
    line-height: 1.5;
    font-family: Newsreader, serif;
    font-size: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
}
*::selection {
    background: none;
    text-decoration: underline;
}
body {
    position: relative;
    min-height: calc(100dvh - 2 * 2lh);
    margin: 2lh 1lh;
    @media (min-width: 1024px) {
        margin-left: 25vw;
        margin-right: 25vw;
    }
    background: #fff;
    color: #000;
    @media (prefers-color-scheme: dark) {
        background: #222;
        color: #fff;
    }
}
article {
    margin-top: 1lh;
}
footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
}
a {
    transition: opacity 200ms;
    display: inline-flex;
    align-items: center;
    gap: 0.5ch;
    color: inherit;
    font-style: italic;
}
a:hover {
    opacity: 0.75;
}
a * {
    display: block;
    position: relative;
    bottom: 0.5px;
}
