body>main {
    flex: 1;
    font-family: var(--font-quicksand);

    >header {
        text-align: center;
        margin: var(--spacing-md) 0;
    }

    >section {
        margin: var(--spacing-lg) auto;

        >header {
            margin-bottom: var(--spacing-sm);

            >h2 {
                text-align: center !important;
            }
        }

        >article {
            text-align: justify;
            margin: var(--spacing-md) auto;

            >header {
                margin-bottom: var(--spacing-sm);
            }

            >section {
                margin: var(--spacing-sm) 0;
            }

            >section:last-child {
                margin: 0;
            }

            >img {
                margin: var(--spacing-md) 0;
            }
        }

        ul,
        ol {
            width: auto;
            margin: 0 0 0 2rem;
            padding: 0;
            box-sizing: border-box;
            text-align: left;

            >li {
                width: calc(100% - 2rem);
                padding: 0;
                margin: 0 0 0.5rem 0;
                line-height: 1.5rem;
                text-align: left;
            }

            li:first-child {
                margin-top: 0 !important;
            }

            li:last-child {
                margin-bottom: 0 !important;
            }

            li::marker {
                color: white;
                font-weight: bold;
            }
        }

        p {
            width: auto;
            margin: 0.5rem 0;
            line-height: 1.5rem;
        }

        p:first-child {
            margin-top: 0 !important;
        }

        p:last-child {
            margin-bottom: 0 !important;
        }

        cite {
            display: block;
            text-align: right;
            font-family: var(--font-cite);
            font-size: var(--font-cite-size);
            font-style: normal;
            color: var(--color-accent);
        }

        em {
            font-family: var(--font-em);
            font-size: var(--font-em-size);
            font-style: italic;
        }

        blockquote {
            margin: var(--spacing-md) auto;
            padding: 0.5rem 0 0.5rem 2rem;
            border-left: 4px solid var(--color-accent);
            font-family: var(--font-em);
            font-size: var(--font-em-size);
            font-style: italic;
        }

        .note {
            padding: var(--spacing-md) 0 0 0;
            margin: var(--spacing-md) 0 0 0;
            border-top: 1px solid var(--color-accent);
        }

        a {
            text-decoration: underline;
            transition: color 0.3s ease;
            text-underline-position: under;
            text-underline-offset: 0.1rem;
            text-decoration-thickness: 1px;
        }

        a:hover {
            text-decoration: none;
        }

        i {
            display: inline-flex;
            align-content: center;
            align-items: center;
            justify-content: center;
        }

        figure {
            margin: var(--spacing-md) 0;
            text-align: center;

            figcaption {
                font-family: var(--font-figure);
                font-size: var(--font-figure-size);
                font-style: normal;
                font-weight: 400;
                text-align: right;
                margin-right: 1rem;
                line-height: 1rem;
            }
        }

        >img {
            max-width: 100%;
            height: auto;
        }
    }
}

.dark-text-shadow {
    text-shadow: 0 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.light-text-shadow {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
}