:root {
    --color-white:          #fff;
    --color-black:          #111;
    --color-geyser:         #c3ddf9;

    --site-font:          	sans-serif, Arial, Helvetica;
    --font-size-sm:         clamp(0.8rem, 0.73rem + 0.217vw, 1rem);
}

*, *:before, *:after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-size: 1rem;
    line-height: 1.4;
	font-family: var(--site-font);
    color: var(--color-black);
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

td, th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid var(--color-geyser);
    font-size: var(--font-size-sm);
}

th {
    background-color: rgb(209, 253, 231);
}

/* other styles */

body {
    margin: 0 auto;
    width: 90vw;
    max-width: 1000px;
}

.message {
    background-color: rgb(213, 213, 213);
    padding: 1em;
    margin: 2em 0;
}

p {
    margin-top: 0;
    margin-bottom: 0.5em;
}