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

body {
  font-family: Arial, Helvetica, sans-serif;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
text-shadow: 0 0 10px white;
  margin-bottom: 1.5em; 
  margin-top: 1.5em;   
  min-height: 200vh;
}

.header {
  position:relative;
  text-align: center;
  padding: 48px 16px 12px;

}
.video-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

#myVideo {
  position: fixed; /* Keeps video from moving as you scroll */
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: -100; /* Ensures it stays behind all other content */
  object-fit: cover; /* Prevents video distortion */
}

.content-overlay {
  position: relative;
  z-index: 1; /* Pulls the text/images in front of the video */
  padding: 20px;
  color: white; /* Optional: makes text visible over dark video */
}
h1 {
  font-family: Arial, Helvetica, sans-serif;
  position:relative;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
 text-shadow: 0 0 10px white;
}

h2 {
  font-family: Arial, Helvetica, sans-serif;
  position:relative;
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 6px;
  text-shadow: 0 0 10px white;
}

h3 {
  font-family: Arial, Helvetica, sans-serif;
  position:relative;
  font-size: 1.1rem;
  font-weight: bold;
 text-shadow: 0 0 10px white;
}


p, li, td, th, label, input, textarea, select {
  font-family: Arial, Helvetica, sans-serif;
  position:relative;
  font-size: 1rem;
  line-height: 1.8;
  text-shadow: 0 0 10px white;
}

a {
  font-family: Arial, Helvetica, sans-serif;
}


.whale-img {
  display: block;
  margin: 12px auto;
  max-height: 70vh;
  max-width: 100%;
  object-fit: contain;
}


@keyframes glitch-shadow {
  0%, 20%, 23%, 80%, 82%, 100% { text-shadow: none; }
  21% { text-shadow: 2px 0 #ff80f0, -2px 0 #80ffee; }
  81% { text-shadow: -2px 0 #ff80f0, 2px 0 #80ffee; }
}

@keyframes glitch-bg {
  0%, 23%, 82%, 100% { background-color: rgba(100, 70, 180, 0.55); }
  21% { background-color: rgba(180, 50, 160, 0.6); }
  22% { background-color: rgba(50, 180, 170, 0.5); }
  81% { background-color: rgba(160, 60, 180, 0.6); }
}

.nav-buttons button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  padding: 8px 18px;
  cursor: pointer;
  border: none;
  background-color: rgba(100, 70, 180, 0.55);
  color: #e8d9ff;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  letter-spacing: 0.04em;
  position: relative;
  animation: glitch-clip 4s infinite, glitch-shadow 4s infinite, glitch-bg 4s infinite;
}

.nav-buttons button:nth-child(2) { animation-delay: 0.6s; }
.nav-buttons button:nth-child(3) { animation-delay: 1.2s; }
.nav-buttons button:nth-child(4) { animation-delay: 1.9s; }
.nav-buttons button:nth-child(5) { animation-delay: 0.3s; }
.nav-buttons button:nth-child(6) { animation-delay: 2.4s; }

.nav-buttons button:hover {
  animation: none;
  background-color: rgba(130, 90, 210, 0.75);
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  text-shadow: 3px 0 #ff80f0, -3px 0 #80ffee;
}


.page-content {
  max-width: 700px;
  margin: 24px auto;
  padding: 24px;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  margin-bottom: 1.7em; 
  margin-top: 1.7em;  
}

.content {
  position: relative;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

