@font-face {  font-family: 'NormFont';  src: url('/fonts/norm.ttf') format('truetype');  font-display: swap;}
body, html {
  font-family: 'Fira Code', monospace;
  font-size: clamp(0.9rem, 2vw, 1.0rem);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.nav-spread {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  text-align: center;
}

@media (min-width: 600px) {
  .nav-spread {
    justify-content: flex-start;
    gap: 4rem; 
  }
}

.banner {
  width: 100%;
  max-width: 300px; 
  height: auto;
}

.header-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.banner-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.header-quote {
  text-align: center;
  margin: 1rem 0;
}

.footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}


.parallax {
  width: 100%;
  aspect-ratio: 2 / .5;
  background-attachment: fixed;
  background-repeat: repeat-y; 
  background-size: 100% auto; 
  background-position: center top;
}

@supports (-webkit-touch-callout: none) {
  .parallax {
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    aspect-ratio: auto;       
    height: 400px;            
  }
}





.content {
  padding: 10px;
  background: white;
  margin-bottom: 50px;
}

.gap {
  margin-bottom: 50px;
  text-align: center;
  height: 2px;
  color: ghostwhite;
  border-width: 0;
  background-color: GhostWhite;
}


h1, h2, p {
  max-width: 800px;
  margin: auto;
}

h1, h2 {
  font-size: 1.6em;
}

p {
  font-family: 'Fira Code', monospace;
  font-size: clamp(0.9rem, 3vw, 1.2rem);
}

p.norm {
  font-family: 'NormFont', sans-serif; 
  font-size: clamp(1.4rem, 3vw, 1.6rem);
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.parallax-wrapper {
  position: relative;
}

.parallax-wrapper .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #999;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@supports (-webkit-overflow-scrolling: touch) {
  .parallax {
    background-attachment: scroll;
    background-size: cover;
  }
}

@keyframes rainbow-flash {
	0% { color: red; }
	16% { color: orange; }
	33% { color: yellow; }
	50% { color: green; }
	66% { color: blue; }
	83% { color: indigo; }
	100% { color: violet; }
}

#green-link {
	font-weight: bold;
	
	animation: rainbow-flash 2s infinite;
}

#green-link:visited {
	color: inherit; 
}
  
.content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.image-cover img {
  max-width: 150px;
  height: auto;
  margin: 0 1rem 1rem 0;
  float: left;
}


