/* neon-pitch animation */
:root {
	--bars-bottom: 16;
	--bar-size: 76px;
	--fade-duration: 0.5; /* seconds */
	--dwell-min: 2; /* seconds */
	--dwell-max: 10; /* seconds */
	--neon-cyan:   rgb(0, 255, 255);
	--neon-purple: rgb(127, 0, 255);
	--neon-yellow: rgb(255, 255, 0);
	--neon-pink:   rgb(255, 0, 127);
}
@keyframes neonOpacity {
	0%   { opacity: 0 }
	13%  { opacity: 1 }
	50%  { opacity: 1 }
	63%  { opacity: 0 }
	100% { opacity: 0 }
}

html, body {
	height: 100%;
	margin: 0;
	background: #fff;
	color: #000;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}

.thin-material {
	backdrop-filter: blur(128px) saturate(150%);
}

#global-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
}
#global-bg-material-layer {
	position: fixed;
	inset: 0;
}
#global-bg-animation-layer {}
.neon-bars {
	position: absolute;
	inset: 0;
}
.neon-bar {
	position: absolute;
	bottom: 0;
	width: var(--bar-size);
	height: 100%;
	opacity: 0;
	will-change: opacity;
}

h1, h2, h3 {
	font-weight: normal;
	
}
a {
	color: #f0b;
}
a:link {
	text-decoration: none;
}
::selection {}
[id] {
	scroll-margin-top: 64px;
}
.text-align-center {
	text-align: center;
}
p.caption {
	margin: 0;
	font-size: small;
}
.row {
  display: flex;
}
.column {}
.column-spacer {
	width: 3rem;
}

header {}
#main-header {
	position: fixed;
	z-index: 3;
	top: 0;
	width: 100%;
}
#main-header a {
	display: inline-block;
	padding: 24px 4vw 24px 4vw;
}
#main-header-home {
	position: fixed;
}
#main-header-menu {
	text-align: center;
}

main {
	position: relative;
	z-index: 2;
	padding: 64px 8vw 32px 8vw;
}
#main-content {
	max-width: 1200px;
	margin: 0 auto 0 auto;
	padding: 2vw 3vw 2vw 3vw;
	line-height: 2rem;
}
#main-content h1, h2, h3 {
	margin-top: 1rem;
	line-height: 3rem;
}
#main-content p {
	line-height: 2rem;
}

footer {}
#main-footer {
	position: fixed;
	z-index: 3;
	width: 100%;
	bottom: 0;
	text-align: center;
	font-size: small;
	color: #f0b;
}
.note-padding {
	padding: 0 1rem 0 1rem;
}
