html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --light-text-neutral-0: #faf6f2;
    --light-text-neutral-300: #cbced3;
    --light-text-neutral-400: #9facb1;
    --light-text-neutral-500: #566972;
    --light-text-neutral-600: #002820;
  
    --light-surface-neutral-0: #ffffff;
    --light-surface-neutral-100: #fbfbfc;
    --light-surface-neutral-200: #f1f5f8;
  
    --light-surface-primary-100: #f1fff6;
    --light-surface-primary-200: #d7f6e2;
    --light-surface-primary-300: #36c665;
    --light-surface-primary-400: #205934;
    --light-surface-primary-500: #002820;
    /* --light-surface-primary-600: #6ef09c;
    --light-surface-primary-700: #9ffabf; */
  
    --light-elements-neutral-0: #ffffff;
    --light-elements-neutral-300: #cbced3;
    --light-elements-neutral-500: #566972;
    --light-elements-neutral-600: #002820;
  
    --light-text-accent-300: #36c665;
    --light-text-accent-400: #205934;
  
    --light-element-accent-300: #36c665;
    --light-element-accent-400: #205934;
  
    --grain: #ffffff;
    --card-border-radius: 4px;
    --image-border-radius: 8px;
    --letter-spacing: normal;
    --title-letter-spacing: normal;
    --default-font-family: 'AvenuePro';
    --title-font-family: 'AvenueProDisplay';
}

@font-face {
    font-family: 'AvenuePro';
    src: url('../fonts/AvenuePro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AvenuePro';
    src: url('../fonts/AvenuePro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'AvenuePro';
    src: url('../fonts/AvenuePro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'AvenuePro';
    src: url('../fonts/AvenuePro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'AvenuePro';
    src: url('../fonts/AvenuePro-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'AvenuePro';
    src: url('../fonts/AvenuePro-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'AvenuePro';
    src: url('../fonts/AvenuePro-ExtraBold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'AvenueProDisplay';
    src: url('../fonts/AvenueProDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AvenueProDisplay';
    src: url('../fonts/AvenueProDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'AvenueProDisplay';
    src: url('../fonts/AvenueProDisplay-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'AvenueProDisplay';
    src: url('../fonts/AvenueProDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'AvenueProDisplay';
    src: url('../fonts/AvenueProDisplay-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'AvenueProDisplay';
    src: url('../fonts/AvenueProDisplay-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'AvenueProDisplay';
    src: url('../fonts/AvenueProDisplay-ExtraBold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

.font-avenue-pro {
    font-family: var(--default-font-family);
}

.font-avenue-pro-display {
    font-family: var(--title-font-family) !important;
}

body {
    font-family: var(--default-font-family, 'AvenuePro'), sans-serif;
    font-size: 16px;
    color: #002820;
}

b, strong {
    font-weight: bolder;
}