/* External fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

/* CSS Reset */
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 {
	border: 0;
	color: inherit;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

body {
	line-height: 1;
}

a {
	text-decoration: none;
}

ol,
ul {
	list-style: none;
}

/* Base variables */
:root {
	--color-neutral-1: #fff9f7;
	--color-neutral-2: #020a33;
	--color-neutral-2-strong: #01030d;
	--color-accent: #de633a;
}

/* Base styles */
html,
body {
	height: 100%;
	width: 100%;
}

body {
	background-color: var(--color-neutral-2);
	color: var(--color-neutral-1);
	font-family: 'Merriweather Sans', serif;
	font-size: 16px;
}

h1 {
	font-size: 1.75rem;
}

h2 {
	font-size: 1.5rem;
}

h3 {
	font-size: 1.25rem;
}

/* Desktop overrides */
@media screen and (min-width: 768px) {
	body {
		font-size: 16px;
	}
}
