:root {
	--color-red: #FF343E;
	--color-blue: #0A2458;
	--color-white: #FFFFFF;
	--color-black: #333132;

	--size-body-max-width: 1024px;
	--size-root-font-size: 16px;

	--font-family: Mercury, serif;
	--font-weight-header: 200;
	--font-size-header: 2.5rem;
	--font-size-subheader: 2rem;
	--font-size-paragraph: 1.5rem;

	font-family: var(--font-family);
	font-size: var(--size-root-font-size);
	color: var(--color-black);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.unselectable {
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

html, body {
	background-color: var(--white);
}

body {
	max-width: var(--size-body-max-width);
	margin: 0 auto;
}

h1 {
	font-size: var(--font-size-header);
	font-weight: var(--font-weight-header);
}

h2 {
	font-size: var(--font-size-subheader);
	font-weight: var(--font-weight-header);
}

header {
	text-align: left;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-items: start;
	gap: 1rem;
	padding: 1rem;
	margin-bottom: 3rem;
}

header img {
	height: 100%;
}

header h1 {
	flex-grow: 1;
	text-align: center;
	padding-right: 6rem;
}

section {
	padding: 1rem;
	margin-bottom: 2rem;
}

li {
	list-style-type: none;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: dotted 1px var(--color-black);
}

li:last-child {
	border-bottom: none;
}

section h2, section p {
	margin-bottom: 1rem;
}

p, li {
	line-height: 1.5;
	font-size: var(--font-size-paragraph);
}

li > * {
	display: block;
}

footer {
	width: 100%;
	text-align: center;
	padding: 1rem;
	margin: 6rem 0 1rem;
}

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

a:hover {
	text-decoration: underline;
}

a:visited {
	color: var(--color-red);
}

@media (max-width: 415px) {
	:root {
		--font-size-header: 2rem;
		--font-size-subheader: 1.5rem;
		--font-size-paragraph: 1.25rem;
	}
	header h1 {
		padding: 0;
	}
}

.name { font-size: 16px;}

.org { font-size: 14px;}

