@font-face {
  font-family: Antipasto;
  font-weight: normal;
  src: url("../assets/antipasto-light.ttf") format("truetype");
}
@font-face {
  font-family: Now;
  font-weight: normal;
  src: url("../assets/Now-Thin.otf") format("opentype");
}
html {
  font-size: 20px;
}

body {
  font-family: "Now";
  font-weight: bold;
  background: #141516;
  color: #c0d0d0;
  margin: 0;
  padding: 0;
  height: 100vh;
}

.container :nth-child(1) {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}
.container :nth-child(2) {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}
.container :nth-child(3) {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
}
.container :nth-child(4) {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.4s;
}
.container :nth-child(5) {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.5s;
}
.container :nth-child(6) {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.6s;
}
.container :nth-child(7) {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.7s;
}
.container :nth-child(8) {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.8s;
}
.container :nth-child(9) {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.9s;
}
.container.container-hidden {
  opacity: 0;
  pointer-events: none;
}
.container.container-hidden > * {
  opacity: 0 !important;
  transform: translateY(100px);
  transition: none;
}
.container.container-hidden.title-container > * {
  transform: translateY(-100px);
}

body > .container a {
  color: #12a9bf;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
body > .container a:hover {
  opacity: 1;
  -webkit-text-decoration: underline 1px;
          text-decoration: underline 1px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #c0d0d0;
  padding-bottom: 15px;
  opacity: 0.4;
  font-size: 0.75rem;
  text-align: right;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}/*# sourceMappingURL=misc.css.map */