@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url(Inter.woff2) format('woff2');
}

* {
  font-family: Inter, 'SF pro', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

button, a {
  cursor: pointer;
}

body {
  background-color: #fff;
  color: #090909;
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  flex-direction: column;
  display: flex;
  align-items: center;
}

#no-js-cover {
  z-index: 100000;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: rgba(0,0,0,0.8);
  display: block;
}

#no-js-text {
  margin-top: 120px;
  background-color: #e88;
  border-radius: 5px;
  padding: 10px;
  position: fixed;
  top: 100px;
  left: 100px;
  max-width: calc(100vw - 200px);
  z-index: 100001;
  line-height: 50px;
}

#top-logo {
  color: #f90;
  font-size: 3em;
  text-decoration: none;
  transition: filter 0.5s ease;
}

#top-logo:hover {
  filter: brightness(0.8);
}

header {
  background-color: #f0f0f0;
  position: fixed;
  z-index: 10000;
  box-shadow: 0 5px 5px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 74px;
  width: 100vw;
  top: 0;
  left: 0;
  margin-bottom: 75px;
}

#rainbow-img {
  width: 319px;
  height: 219px;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #222;
    color: #eee;
  }

  header {
    background-color: #333;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

