/* --------------------------------------------------
   OUTSIDE OF TIME
   Temporary Landing Page
   -------------------------------------------------- */


* {
  box-sizing: border-box;
}


html,
body {
  margin: 0;
  padding: 0;

  min-height: 100%;

  background: #ffffff;
  color: #111111;

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


body {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}


/* ---------- PAGE ---------- */

.oot-page {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  padding: 60px 30px;
}


/* ---------- HERO ---------- */

.oot-hero {
  width: 100%;
  max-width: 900px;

  text-align: center;
}


.oot-binary {
  margin: 0 0 24px;

  color: #777777;

  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}


.oot-hero h1 {
  margin: 0;

  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}


.oot-tagline {
  margin: 24px 0 0;

  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.oot-statement {
  margin: 55px 0 0;

  color: #555555;

  font-size: 1.15rem;
  line-height: 1.7;
}


/* ---------- FOOTER ---------- */

.oot-footer {
  width: 100%;
  padding: 24px 20px 30px;

  text-align: center;
}


.oot-footer p {
  margin: 5px 0;

  font-size: 0.78rem;
}


.oot-small {
  color: #777777;

  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.08em;
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

  .oot-page {
    padding: 40px 20px;
  }

  .oot-binary {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .oot-tagline {
    font-size: 0.78rem;
    line-height: 1.7;
  }

}