/* =========================
   BASE TEXT (was BODY, P)
========================= */
body {
  margin: 0;           /* This removes the gap at the top */
  padding: 0px;
  font-family: 'Lars Bold Condensed', sans-serif;
  font-size: 11px;
  color: #ffffff;
  background: #ffffff;
}

p {
  margin-bottom: 12px;
  font-size: 11px;
}


/* =========================
   HEADINGS (was H1–H3)
========================= */
h1 {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #ffffff;
}

h2 {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.4px;
  color: #ffffff;
}

h3 {
  font-size: 11px;
  font-weight: normal;
  color: #ffffff;
}

/* =========================
   LINKS (was red A states)
========================= */
a {
  color: #000 !important;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}

a:visited,
a:active {
  color: #000 !important;
}

a:hover {
  color: rgb(179, 91, 72) !important;
  text-decoration: underline;
}

/* =========================
   UTILITY TEXT CLASSES
   (was .default, .fine, .form)
========================= */
.default {
  font-size: 11px;
  font-family: 'Lars Bold Condensed', sans-serif;
  color: #ffffff;
}

.fine {
  font-size: 10px;
  font-family: 'Lars Bold Condensed', sans-serif;
  opacity: 0.85;
  color: #ffffff;
}

.form {
  font-size: 10px;
  font-family: 'Lars Bold Condensed', sans-serif;
  color: #ffffff;
}

#archive-warning {
  position: fixed;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-family: 'Lars Bold Condensed', sans-serif;
  font-size: clamp(60px, 10vw, 160px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;

  color: rgb(0, 0, 0);
  background: transparent;
  

  z-index: 99999;


  pointer-events: none;

 

  animation: archive-glitch 1.4s infinite steps(2);
}



.enter-btn {
   mix-blend-mode: normal;
  pointer-events: auto;

  margin-top: 40px;
  
  background: transparent;
  border: 1px solid #000;

  padding: 10px 24px;
  font-size: 14px;
  
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;

  transition: all 0.2s ease;
}
