@import url('./fonts/fonts.css');

:root {
	--space-0: 0;
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-7: 1.75rem;
	--space-8: 2rem;

	--header-height: 4rem;
	--max-width-desktop: 1024px;

	--font-family-sans: 'LT Avocado', Helvetica, Arial, sans-serif;
	--font-family-serif: 'Opening Hours Sans', Times, serif;
	--font-family-display: 'Story Script', 'Frick0.3', serif;
	--font-family-mono: 'IBM Plex Mono', monospace;

	--font-family-heading-bold: 'LT Avocado Bold', Helvetica;
	--font-family-heading-regular: 'LT Avocado Regular', Helvetica;

	--font-size-4: 4rem;
	--font-size-7: 7rem;

	--shadow: rgba(0, 0, 0, 0.4);
	--primary: white;
	--text: white;
	--text-contrast: white;

	--3d-shadow:
		1px 1px 1px #ccc, 2px 2px 1px #bbb, 3px 3px 1px #aaa, 4px 4px 1px #999, 5px 5px 1px #888,
		6px 6px 1px #777, 7px 7px 1px #666, 8px 8px 1px #555, 9px 9px 1px #444,
		0px -1px 1px rgb(0, 0, 0, 1), -1px 0px 1px rgba(0, 0, 0, 1), 0px 1px 1px rgba(0, 0, 0, 1),
		1px 2px 1px rgba(0, 0, 0, 1), 2px 3px 1px rgba(0, 0, 0, 1), 3px 4px 1px rgba(0, 0, 0, 1),
		4px 5px 1px rgba(0, 0, 0, 1), 5px 6px 1px rgba(0, 0, 0, 1), 6px 7px 1px rgba(0, 0, 0, 1),
		7px 8px 1px rgba(0, 0, 0, 1), 8px 9px 1px rgba(0, 0, 0, 1), 9px 10px 1px rgba(0, 0, 0, 1),
		1px 0px 1px rgba(0, 0, 0, 1), 2px 1px 1px rgba(0, 0, 0, 1), 3px 2px 1px rgba(0, 0, 0, 1),
		4px 3px 1px rgba(0, 0, 0, 1), 5px 4px 1px rgba(0, 0, 0, 1), 6px 5px 1px rgba(0, 0, 0, 1),
		7px 6px 1px rgba(0, 0, 0, 1), 8px 7px 1px rgba(0, 0, 0, 1), 9px 8px 1px rgba(0, 0, 0, 1),
		10px 9px 1px rgba(0, 0, 0, 1);
}

html {
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	font-family: 'avenir next';
	--border: var(--primary);
	--background-filter: invert(0);
}

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

body {
	font-family: var(--font-family-sans);
	color: var(--white);
}

p {
	color: var(--text);
}

h1 {
	color: white;
	text-shadow: var(--3d-shadow);
}

h2 {
	color: white;
}

h3 {
	color: var(--text-contrast);
}

a {
	color: inherit;
	cursor: pointer;
	font-weight: bold;
	text-decoration: underline;
	scale: 1;
	/* color: var(--text-contrast); */
}

a:hover {
	opacity: 0.99;
}

a:active {
	transform: scale(0.99);
}

ul,
ol {
	list-style-position: inside;
	color: var(--text-contrast);
}

body.show-yellow-border
	*:not([style*='border']):not([class*='border']):not(.no-outline):not(svg):not(svg *) {
	outline: 0.4px dotted rgb(255, 255, 255);
}
