@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500..700&family=Open+Sans:wght@300..800&family=Press+Start+2P&display=swap');


/* BODY −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}

h2 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #ffffff;
}


/* VIDEO BACKGROUND −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− */
.video {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  background: #535e63; /* #535e63 #254373*/
}

.video__scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  animation: flicker 3s infinite;
  z-index: 3;
}

.video__scanlines::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      transparent 50%,
      rgba(0,0,0,.5) 51%
    );
    background-size: 100% 4px;
    animation: scanlines 0.2s linear infinite;
  }

.video__noise {
  position: fixed;
  inset: -50%;
  background: url('http://assets.iceable.com/img/noise-transparent.png') repeat;
  animation: noise 0.2s infinite;
  opacity: 0.7;
  z-index: 4;
}

.video__radial-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.4) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 5;
}

.video__text-connected, .video__text-status {
  position: absolute;
  color: rgba(255,255,255,0.8);
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  text-shadow: -1px 1px 8px rgba(255,255,255,0.8);
  /*animation: rgbText 1s steps(9) infinite alternate;*/
}

.video__text-connected {
  bottom: 3rem;
  left: 3rem;
}

.video__text-status {
  bottom: 3rem;
  right: 3rem;
}

@keyframes noise {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-10%,5%); }
  40%  { transform: translate(-5%,15%); }
  60%  { transform: translate(15%,0); }
  80%  { transform: translate(-15%,0); }
  100% { transform: translate(5%,0); }
}

@keyframes flicker {
  0%,100% { opacity: .6; }
  20%     { opacity: .3; }
  50%     { opacity: .8; }
  80%     { opacity: .7; }
}

@keyframes scanlines {
  from { background-position: 0 0px; }
  to   { background-position: 0 4px; }
}

@keyframes rgbText {
  0%,25% {
    text-shadow:
      -1px 1px 8px rgba(255,255,255,.6),
      0 0 3px rgba(251,0,231,.8),
      0 0 3px rgba(0,233,235,.8),
      0 0 3px rgba(0,242,14,.8),
      0 0 3px rgba(244,45,0,.8),
      0 0 3px rgba(59,0,226,.8);
  }
  50% {
    text-shadow:
      -5px 0 1px rgba(251,0,231,.8),
      0 5px 1px rgba(0,233,235,.8),
      5px 0 1px rgba(0,242,14,.8),
      0 -5px 1px rgba(244,45,0,.8);
  }
  100% {
    text-shadow:
      5px 0 1px rgba(251,0,231,.8),
      0 -5px 1px rgba(0,233,235,.8),
      -5px 0 1px rgba(0,242,14,.8),
      0 5px 1px rgba(244,45,0,.8);
  }
}


/* FIREFLIES −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− */
.firefly {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 0.4vw;
  height: 0.4vw;
  margin: -0.2vw 0 0 9.8vw;

  pointer-events: none;
}

.firefly::before,
.firefly::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-origin: -10vw;
}

.firefly::before {
  background: black;
  opacity: 0.0;
  animation: drift ease alternate infinite;
}

.firefly::after {
  background: white;
  opacity: 0;
  box-shadow: 0 0 0vw 0vw white;
  animation: drift ease alternate infinite, flash ease infinite;
}

@keyframes drift {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes flash {
  0%, 30%, 100% {
    opacity: 0;
    box-shadow: 0 0 0vw 0vw white;
  }
  5% {
    opacity: 1;
    box-shadow: 0 0 2vw 0.4vw white;
  }
}


/* HEADER −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-top: 1vw;
  padding-bottom: 1vw;
  padding-left: 2vw;
  padding-right: 2vw;
}

.header__content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
}

.header__logo {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: #ffffff;
}

.header__contact {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.header__contact-link {
  display: inline-block;
  padding: 0.7rem 1.1rem;
  background: #c22230;
  color: white;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.header__contact-link:hover {
  background: #ed1c24;
}

@media (max-width: 768px) {
  .header__content {
    padding: 1rem 1rem;
  }

  .header__logo {
   
  }

  .header__contact-link {

  }
}


/* TAGLINE −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− */
.tagline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.tagline__title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tagline__description {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: center;
}

.tagline__description::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: #ed1c24;
  margin: 0 2rem 0 0;
}

.tagline__description::after {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: #ed1c24;
  margin: 0 0 0 2rem;
}
