/* Good for post-specific pages */
main a {
    color: var(--accent);
    font-family: "Antonio", sans-serif;
}

main h1 {
    text-wrap: wrap;
    overflow-wrap: break-word;
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    font-family: "Rubik Mono One", monospace;
}

main h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    font-family: "Rubik Mono One", monospace;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

main p,
main ul li {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 200;
    font-size: 1.25rem;
    max-width: 65ch;
    font-variant-numeric: tabular-nums;
    margin: 0.85rem 0;
}

main ul li {
    margin: 0.25rem 0;
}
main strong {
    font-weight: 600;
}

main button {
    font-family: "Atkinson Hyperlegible", sans-serif;

    background-color: var(--accent);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.25rem;
    cursor: pointer;
    margin-top: 1.25rem;
    width: 100%;
}

main .disclaimer {
    font-size: 0.85rem;
    color: #85795e;
    margin-top: 0.5rem;
    font-family: "Atkinson Hyperlegible", sans-serif;
}

.headerPermalink {
    display: none;
}

#share {
    margin-top: 1rem;
}
#share p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

#share a:not(:first-of-type) {
    margin-left: 1rem;
}

@media screen and (min-width: 1200px) {
    main h1 {
        font-size: 2.5rem;
    }
    main h2 {
        font-size: 1.75rem;
    }

    main button {
        padding: 0.5rem 2rem;
        width: fit-content;
    }
}
