@font-face {
  font-family: 'Consolas';
  src: url('Consolas.ttf') format('truetype');
}

@font-face {
  font-family: 'LinjaSike';
  src: url('mrfont.ttf') format('truetype');
}

body {
  font-family: 'Consolas', monospace;
  margin: 0; padding: 0;
  font-size: 16px; color: #000;

  background-color: #ccff99;
  background-repeat: repeat;
  background-position: 0 0;
  background-size: 400px 400px;
  animation: scrollBackground 60s linear infinite;
}


h1, h2, h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700; margin: 16px 0;
}
p { margin: 8px 0; }
a {
  color: #667F4C; text-decoration: none;
}
a:visited, a:active {
  color: #667F4C;
}
v {
  font-weight: 700;
  font-style: italic;
}
.centered { text-align: center; }
.section {
  max-width: 928px; padding: 18px; margin: 0 auto;
}
@keyframes letterWiggle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-1px) rotate(-2deg); }
  50% { transform: translateY(1px) rotate(2deg); }
  75% { transform: translateY(-1px) rotate(-1deg); }
}

.header h1 {
  font-size: 3em; display: flex;
  align-items: center; justify-content: center;
  text-align: center;
}
.header svg {
  width: 56px; height: 56px;
  flex-shrink: 0; margin-right: 8px;
}


@media (max-width: 750px) {
  .header h1 { flex-direction: column; }
  .header svg { margin: 0 0 8px 0; }
}

@media (max-width: 450px) {
  .underline-tooltip::after {
    max-width: 90vw;
  }
}

.button-container {
  text-align: center; margin: 40px 0;
}
.button-link {
  display: inline-block; padding: 12px 24px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 16px;
  color: #000 !important;
  background: #00d0ff;
  border: none; border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.button-link:hover {
  background: #00a0cc; color: #fff !important;
}

footer {
  opacity: 0.8; width: 100%;
  text-align: center; margin-bottom: 16px;
}
footer p { margin: 0 0 8px 0; }


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.page {
  display: none;
}
.page.active {
  display: block;
}

gap::before {
  content: '';
  display: inline-block;
  width: 1em;
}

.row {
  display: flex;
  justify-content: center;
  gap: 1em;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: clamp(5px, 2vw, 10px);
  flex-wrap: wrap;
  margin-top: 10px;
}

.image {
  height: 180px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #ff0000;
}

.image:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}