/* Thank you Josh W. Comeau for this CSS reset default */
/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*
  2. Remove default margin
*/
* {
  margin: 0;
  font-family: "Helvetica", "Helvetica Neue", "Arial";
}
/*
  3. Allow percentage-based heights in the application
*/
html,
body {
  height: 100%;
}
/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/*
  7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}
/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
/*
  9. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

html {
  color: #fff;
  background-color: #151517;
}

.liftoff {
  margin: auto;
  max-width: 1000px;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.liftoff h3 {
  margin-bottom: -32px;
  color: #ffffffbd;
  font-size: 28px;
  text-transform: uppercase;
  text-shadow: 0 0 6px #fff;
  letter-spacing: 5px;
  font-family: "Archivo Black", sans-serif;
}

.countdown {
  color: #ffffffbd;
  font-size: 196px;
  font-stretch: expanded;
  text-shadow: 0 0 8px #fff;
  letter-spacing: 5px;
  display: flex;
  align-items: center;
  gap: 32px;
}

#five,
#four,
#three,
#two {
  position: absolute;
}

.text {
  font-family: "Archivo Black", sans-serif;
}
.bars {
  color: #ffffffbd;
  font-size: 128px;
  font-family: "Archivo Black", sans-serif;
}

.bars:first-child {
  transform: translateY(-8px);
}

.bars:last-child {
  transform: rotate(90deg);
}

.faded {
  color: #ffffff10;
  font-family: "Archivo Black", sans-serif;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.288);
}

.fly-safe {
  margin: auto;
  max-width: 1000px;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fly-safe span {
  color: #ffffffbd;
  font-size: 100px;
  font-stretch: expanded;
  text-shadow: 0 0 8px #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: "Archivo Black", sans-serif;
}

.hidden {
  visibility: hidden;
}

.display-none {
  display: none;
}
