:root {
    --bg: #0d1117;
    --text: #cccccc;
    --text-muted: gray;
    --accent: #889c0b;
    --font-serif: Georgia, "Times New Roman", Times, serif;
    --transition-fade: opacity 1s;
}

body {
    margin: 0;
    color: var(--text);
    display: grid;
    place-items: center;
    height: 100dvh;
    background: var(--bg);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: var(--transition-fade);
}

main * {
    margin: 0;
}

main.hidden {
    opacity: 0;
}

#intro {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.displayNone {
    display: none !important;
}

blockquote {
    border: none;
    font-family: var(--font-serif);
    quotes: "\201C""\201D""\2018""\2019";
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 32px;
}

blockquote::before {
    content: open-quote;
    font-weight: bold;
    font-size: 100px;
    color: var(--accent);
    line-height: 0.85;
    align-self: flex-start;
}

blockquote::after {
    content: close-quote;
    font-weight: bold;
    font-size: 100px;
    color: var(--accent);
    line-height: 0;
    align-self: flex-end;
}

cite {
    font-style: italic;
    color: var(--text-muted);
    font-family: var(--font-serif);
}

button {
    color: var(--text-muted);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: larger;
    transition: letter-spacing 0.25s, font-style 0.25s;
}

button:hover {
    letter-spacing: 2px;
    font-style: italic;
}

.legal {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    color: gray;
    text-align: center;
}

.top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    color: gray;
    text-align: center;
}

.legal * a, .legal a, .top a {
    color: gray;
}