/* material-symbols-outlined-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/material-symbols-outlined-v271-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

/* orbitron-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/orbitron-v34-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* barlow-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
	--primary-color: #004080;
	--primary-color-light: #0066cc;
}

html {
	
}

a {
	text-decoration: unset;
}

html, body {
	height: 100%;
	margin: 0;
}

body {
	font-family: 'Barlow';
	margin: 0 auto;
}

h1, h2, h3, h4, p {
	font-size: 1rem;
	font-weight: 400;
}

header {
	padding: 1.25em 10%;
	font-size: 1.5em;
	position: fixed;
	width: 100%;
	z-index: 1000;
	top: 0;
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: saturate(180%) blur(10px);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	max-width: unset;
}

nav {
	display: flex;
	justify-content: space-between;
} 

nav * {
	margin: 0 0.5em;
}

footer {
	margin-top: 10em;
	padding: 2em;
	background-color: rgb(240, 240, 240);
}

.text-xxl {
	font-size: 10rem;
}
.text-xl {
	font-size: 6.5rem;
}
.text-l {
	font-size: 2rem;
	font-weight: 250;
}
.text-m {
	font-size: 1.5rem;
	font-weight: 300;
}
.text-s {
	font-size: 0.8rem;
}

.text-left {
	text-align: left !important;
}

.icon-xxl {
	font-size: 20rem;
}
.icon-xl {
	font-size: 10rem;
}
.icon-l {
	font-size: 5rem;
}
.icon-m {
	font-size: 3rem;
}
.icon-s {
	font-size: 2rem;
}

.h-fit {
	height: fit-content;
}

.h-full {
	height: 100vh;
}

.h-large {
	height: 50rem;
}

.h-medium {
	height: 25rem;
}

.h-small {
	height: 10rem;
}

.w-limit {
	max-width: 2400px;
}

.w-full {
	width: 100vw;
}

.w-100 {
	width: 100%;
}

.w-75 {
	width: 75%;
}

.w-50 {
	width: 50%;
}



.color-prim {
	color: var(--primary-color);
}

.color-alt {
	color: var(--primary-color-light);
}

.color-white {
	color: white;
}

.b-color-prim {
	background-color: var(--primary-color);
}

.b-color-alt {
	background: var(--primary-color-light);
}


.text-logo {
	font-family: 'Orbitron';
	letter-spacing: 2px;
	display: inline-block;
	white-space: nowrap;
	text-shadow: 0 0 4px #888;
	transition: text-shadow 0.4s ease;
	color: var(--primary-color);
}

.flex {
	display: flex !important;
}

.wrap {
	flex-wrap: wrap;
}

.column {
	flex-direction: column;
}

.evenly {
	justify-content: space-evenly !important;
}

.space-between {
	justify-content: space-between !important;
}

.center {
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.left {
	justify-content: start !important;
	text-align: left;
}

.right {
	justify-content: end !important;
	text-align: right;
}

.top {
	align-items: start !important;
}

.bottom {
	align-items: end !important;
}

/* No render, no observation, but screen reading still works. */
.visually-hidden {
	position: absolute;
	  width: 1px;
	  height: 1px;
	  padding: 0;
	  margin: -1px;
	  overflow: hidden;
	  clip: rect(0, 0, 0, 0);
	  white-space: nowrap;
	  border: 0;
}
/* Treated as if it doesn't exist in the DOM. No render, no observation, no screen reading. */
.fully-hidden {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}:root {
	--primary-color: #004080;
	--primary-color-light: #0066cc;
}

html {
	
}

a {
	text-decoration: unset;
}

html, body {
	height: 100%;
	margin: 0;
}

body {
	font-family: 'Barlow';
	margin: 0 auto;
}

h1, h2, h3, h4, p {
	font-size: 1rem;
	font-weight: 400;
}

header {
	padding: 1.25em 10%;
	font-size: 1.5em;
	position: fixed;
	width: 100%;
	z-index: 1000;
	top: 0;
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: saturate(180%) blur(10px);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	max-width: unset;
}

nav {
	display: flex;
	justify-content: space-between;
} 

nav * {
	margin: 0 0.5em;
}

footer {
	margin-top: 10em;
	padding: 2em;
	background-color: rgb(240, 240, 240);
}

.text-xxl {
	font-size: 10rem;
}
.text-xl {
	font-size: 6.5rem;
}
.text-l {
	font-size: 2rem;
	font-weight: 250;
}
.text-m {
	font-size: 1.5rem;
	font-weight: 300;
}
.text-s {
	font-size: 0.8rem;
}

.text-left {
	text-align: left !important;
}

.icon-xxl {
	font-size: 20rem;
}
.icon-xl {
	font-size: 10rem;
}
.icon-l {
	font-size: 5rem;
}
.icon-m {
	font-size: 3rem;
}
.icon-s {
	font-size: 2rem;
}

.img-s {
	width: 48px !important;
	height: 48px !important;
}

.color-prim {
	color: var(--primary-color);
}

.color-alt {
	color: var(--primary-color-light);
}

.color-white {
	color: white;
}

.b-color-prim {
	background-color: var(--primary-color);
}

.b-color-alt {
	background: var(--primary-color-light);
}


.text-logo {
	font-family: 'Orbitron';
	letter-spacing: 2px;
	display: inline-block;
	white-space: nowrap;
	text-shadow: 0 0 4px #888;
	transition: text-shadow 0.4s ease;
	color: var(--primary-color);
}

.flex {
	display: flex;
}

.flex-1 {
	flex: 1;
}

.wrap {
	flex-wrap: wrap;
}

.column {
	flex-direction: column;
}

.evenly {
	justify-content: space-evenly;
}

.space-between {
	justify-content: space-between;
}

.center {
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.left {
	justify-content: start !important;
	text-align: left;
}

.right {
	justify-content: end !important;
	text-align: right;
}

.top {
	align-items: start !important;
}

.bottom {
	align-items: end !important;
}

/* No render, no observation, but screen reading still works. */
.visually-hidden {
	position: absolute;
	  width: 1px;
	  height: 1px;
	  padding: 0;
	  margin: -1px;
	  overflow: hidden;
	  clip: rect(0, 0, 0, 0);
	  white-space: nowrap;
	  border: 0;
}
/* Treated as if it doesn't exist in the DOM. No render, no observation, no screen reading. */
.fully-hidden {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

@media (max-width: 800px) {
	header {
		font-size: 1em;
	}

	.text-xxl {
		font-size: 5rem;
	}
	.text-xl {
		font-size: 2rem;
	}
	.text-l {
		font-size: 1.25rem;
		font-weight: 250;
	}
	.text-m {
		font-size: 1rem;
		font-weight: 300;
	}

	.text-left {
		text-align: left !important;
	}

	.icon-xxl {
		font-size: 15rem;
	}
	.icon-xl {
		font-size: 7.5rem;
	}
	.icon-l {
		font-size: 3.33rem;
	}
	.icon-m {
		font-size: 2remS;
	}
	.icon-s {
		font-size: 1.5rem;
	}

	.img-s {
		width: 36px !important;
		height: 36px !important;
	}
}

@media (800px < width < 1200px) {
	header {
		font-size: 1em;
	}

	.text-xxl {
		font-size: 7.5rem;
	}
	.text-xl {
		font-size: 4rem;
	}
	.text-l {
		font-size: 1.5rem;
		font-weight: 250;
	}
	.text-m {
		font-size: 1rem;
		font-weight: 300;
	}

	.text-left {
		text-align: left !important;
	}

	.icon-xxl {
		font-size: 15rem;
	}
	.icon-xl {
		font-size: 7.5rem;
	}
	.icon-l {
		font-size: 3.33rem;
	}
	.icon-m {
		font-size: 2remS;
	}
	.icon-s {
		font-size: 1.5rem;
	}

	.img-s {
		width: 36px !important;
		height: 36px !important;
	}
}
