/*
 * Reset
 *
 * Minimal reset. Not a full normalize — just the bits this site actually
 * needs. Box-sizing inheritance, margin/padding zeroing, and root font
 * rendering tweaks.
 */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
