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

html, body {
    width: 100%;
    height: 100%;
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    margin: 0;
	padding: 0;
}

a {
    color: var(--text-primary);
    text-decoration: none;    
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-family: var(--font-heading);
}

p {
    margin-bottom: var(--space-md);
    font-size: var(--font-base);
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.hidden {
    display: none !important;
}

@font-face {
    font-family: "Unlock";
    src: url("../fonts/unlock.ttf") format("truetype");
}
@font-face {
    font-family: "Atkinson Hyperlegible";
    src: url("../fonts/atkinson-hyperlegible.otf") format("opentype");
}
@font-face {
    font-family: "WinkySans";
    src: url("../fonts/winkysans.ttf") format("truetype");
}