/*
 * proto.css — Prototype base styles
 * Shared across all prototype HTML files.
 * References tokens from ../css/tokens.css
 */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: var(--font-family-body);
    font-size: 16px;
    background-color: var(--color-bg-body);
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: var(--color-text-link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
