@font-face {
  font-family: ArgentPixelCF;
  src: url(/static/fonts/ArgentPixelCF-Regular.woff);
}

body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'ArgentPixelCF';
  color: #fff;
}

* {
  box-sizing: border-box;
  background-color: #0B0B0B;
}

a {
  color: #fff;
  text-underline-offset: 2px;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

#logo svg {
  display: block;
  width: 600px;
  height: 200px;
}

.v-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 50px;
}

#intro {
  font-size: 13px;
  line-height: 1.7em;
  position: absolute;
  left: 30px;
  bottom: 30px;
  max-width: 320px;
}

@keyframes pulse {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

svg path,
svg rect {
  /* transition: all 0.06s ease-in-out; */
  /* animation: pulse 1s infinite alternate; */
}

@media (max-width: 700px) {
  #logo svg {
    width: 300px;
    height: 100px;
  }

  #intro {
    max-width: 70%;
  }
}