* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    font-family: 'Graphik', sans-serif;
    cursor: default;
}

main {
    flex-grow: 1;
}

h1, h2, h3, h4, h5, h6, p, caption, a {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

a {
    color: black;
    text-decoration: none;
    cursor: pointer;
    transition: color 300ms;
}

a.link:hover {
    text-decoration: underline;
}

a:visited {
    color: black;
}

a:hover {
    text-decoration: none;
}

a.active {
    text-decoration: underline;
}

p {
    max-width: 700px !important;
}

button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

ul, dl {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li, ul dt, ul dd, dl li, dl dt, dl dd, ol li, ol dt, ol dd {
    margin: 0;
    display: block;
    height: fit-content;
}

dl dd {
    margin-bottom: 1em;
}

table th, table tr, table td {
    text-align: left;
}

small {
    font-size: 60%;
}

address {
    font-style: normal;
}

figure {
    margin: 0;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

img.expand {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.rounded {
  border-radius: 2px;
}

video {
    width: 100%;
    height: auto;
}

caption {
    text-align: left;
}

hr {
    width: 2rem;
    border: 0;
    height: 2px;
    margin: 0.5rem 0;
    background-color: rgb(220,220,220);
}

span.comma {
    display: inline-table;
}

.no-scroll {
    overflow: hidden;
}

.hide-mobile {
    display: none !important;
}

@media only screen and (min-width: 1024px) {
    .hide-mobile {
        display: unset !important;
    }
}