@font-face {
    font-family: 'Inconsolata';
    src: url('/static/Inconsolata-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('/static/Merriweather-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inconsolata';
    src: url('/static/Inconsolata-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* {
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
html,
body,
#root {
  margin: 0;
  border: 0;
  font-family: 'Merriweather', serif;
  font-size: 1em;
  overflow: hidden;
}

.animated-background {
  height: 100%;
  width: 100%;
  animation: all 1s linear;
}

.letters {
  display: inline-block;
  position: relative;
  letter-spacing: 0.05em;
}
.letter {
  display: inline-block;
  transform-origin: 0 0;
  line-height: 1em;
}

#home {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1em;
  cursor: none;
}
#home #bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
#home #letters-wrapper {
  display: inline-block;
  text-align: center;
  font-size: 16vw;
  font-weight: bold;
}
@media (min-width: 900px) {
  #home #letters-wrapper {
    font-size: 16vmin;
  }
}
#home footer {
  bottom: 0;
  flex-direction: column;
  font-size: 1.2em;
}
#home header {
  top: 0;
  flex-direction: row;
  font-size: 2em;
}
#home header span {
  margin: 0 0.5em;
}
#home .fixed {
  font-family: 'Inconsolata', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  text-align: center;
  width: 100vw;
  padding: 1rem;
  z-index: 1;
}
#home .fixed span {
  background-color: rgba(255,255,255,0.15);
}
#home .fixed a {
  cursor: none;
  color: inherit;
  transition: all 100ms;
  display: inline-block;
}
#home .fixed a:hover {
  transform: scale(1.2);
}

.static {
  padding: 1em;
  overflow: auto;
  width: 100vw;
  height: 100vh;
  font-family: monospace;
  font-size: 1rem;
}
.static .content {
  margin: auto;
  width: 100%;
  max-width: 32em;
}

