@font-face {
  font-family: Open Sans;
  src: url('../fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf') format("truetype-variations");
  font-weight: 1 999;
  font-style: normal;
}

@font-face {
  font-family: Open Sans;
  src: url('../fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth,wght.ttf') format("truetype-variations");
  font-weight: 1 999;
  font-style: italic;
}

@font-face {
  font-family: Oswald;
  src: url('../fonts/Oswald/Oswald-VariableFont_wght.ttf') format("truetype-variations");
  font-weight: 1 999;
  font-style: normal;
}

@font-face {
  font-family: Roboto Slab;
  src: url('../fonts/Roboto_Slab/RobotoSlab-VariableFont_wght.ttf') format("truetype-variations");
  font-weight: 1 999;
  font-style: normal;
}

:root {
	--highlight: rgb(126,188,25);
	--highlighted: rgb(176,238,75);
	--bgcolor: rgb(220,220,220);
	--color-dark: black;
	--color-light: white;
	--color: black;
	--color-link: red;
	--bgdark: rgb(92,92,73);
	--bg-header: black;
	--color-header: white;
	--container-color: white;
	--max-width: 1140px;
	--spacer-width: 30px;
	--padding-standard: 15px;
	--padding-block: 15px;
	--gap-standard: 2em;
	--footer-background: rgb(40,40,40);
	--footer-color: white;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;padding: 0;
  text-decoration: none;
  list-style: none;
}

svg {
	flex-shrink:0;
	height: 1.5em;
	width: 1.5em;
	fill: black;
}

html{
	max-width: 100vw;
	font-family: Open Sans, sans serif;
	font-size: 1rem;
}

body {
	margin: 0;
	width:100%;
	max-width: 100vw;
	
}

h1, h2, h3, h4, h5, h6 {
	font-family: Roboto Slab, serif;
	font-size: 100%;
	font-weight: normal;
}

.bg-color {
	background-color: var(--bgcolor);
}

.bg-dark {
	background-color: var(--bgdark);
}

.bg-white {
	background-color: white;
}

.bg-black {
	background-color: black;
}

.bg-transparent {
	background-color: transparent;
}

.bg-blur {
	background-color: rgb(255 255 255 / 70%);
  	backdrop-filter: blur(10px);
}

.container {
	max-width: 100%;
	scroll-snap-align: start;
}

.spacer {
	width: 100%;
	height: var(--spacer-width);
}

.wrapper {
	width: 100%;
}

.flexbox {
	display: flex;
}

.full {
	padding:var(--padding-block);
}

.block {
	padding:var(--padding-block) max(calc(((100% - var(--max-width)) / 2)), var(--padding-block));
}

.inner {
	padding:var(--padding-standard);
}

.text {
	display: block;
	max-width: 100%;
	font-size: 100%;
	h1 {
		color: var(--highlight);
		font-size: 250%;
		margin-bottom: 0.1em;
	}
	h2 {
		color: var(--highlight);
		font-size: 150%;
		font-weight: 300;
		margin-bottom: 1em;
	}
	h3 {
		color: var(--highlight);
		font-weight:bold;
		font-size: 140%;
		margin-top: 1.5em;
		margin-bottom: 0.2em;
	}
	h4 {
		color: var(--highlight);
		font-size: 120%;
		font-weight: 700;
		margin-bottom: 0.2em;
	}
	p {
		font-size: 120%;
		font-weight: normal;
		margin-bottom: 0.5em;
	}
	a {
		color:black;
		font-weight:700;
		transition: all 0.2s ease-in;
		&:hover {
			color: var(--highlight);
		}
	}
	ul {
		font-size:120%;
		padding-left:2em;
		margin-bottom:0.8em;
		margin-top:0.8em;
		list-style: square;
		& li {
			list-style: inherit;
			margin-bottom:0.2em;
		}
	}

	.webinfo {
		margin-top:3em;
		font-size:100%;
	}
}

@media (max-width: 800px) {
	.text {
			font-size: 80%;
			h1 {
				font-size: 200%;
			}
	}
}