@import url("https://fonts.googleapis.com/css2?family=Alatsi&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  margin: 0;
  font-family: "Alatsi", sans-serif;
}

video {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  z-index: 2;
}

#welcome {
  font-size: 3em;
  background: rgba(33, 33, 33, 0.68);
  height: 100vh;
  min-height: 120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  padding: 2rem 0;
  z-index: 5;
}
#welcome span {
  opacity: 0;
  filter: blur(18px);
}
#welcome #scroll-to-continue {
  color: #444;
  justify-self: flex-end;
  opacity: 1;
  font-size: 0.5em;
}

.animated-fade-in-load {
  color: #fff;
}

#footer {
  background: black;
  color: white;
  border-top: 3px solid #FFF;
  height: 20vh;
  display: flex;
  flex-direction: row;
}
#footer .about {
  display: flex;
  flex-direction: column;
  padding-right: 25px;
}
#footer .quicklinks {
  display: flex;
  flex-direction: column;
}

.demo-buttons {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  width: 180px;
  height: 50px;
  margin: auto;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-buttons .bubble {
  position: absolute;
  z-index: 1;
  background: white;
  border-radius: 10px;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
.demo-buttons button {
  z-index: 10;
  width: 47%;
  height: 80%;
  background: none;
  border: none;
  font-weight: bold;
  color: white;
  cursor: pointer;
  border-radius: 10px;
}
.demo-buttons button:hover {
  background-color: rgba(127, 127, 127, 0.15);
}

nav {
  position: sticky;
  top: 10px;
  z-index: 10;
  background: black;
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
nav a {
  color: #aaa;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
nav a:hover {
  color: white;
}

#main-content {
  height: 200vh;
  background-color: black;
  display: flex;
  justify-content: center;
  z-index: 1;
  position: relative;
  overflow: visible;
}

#disclaimer {
  width: 100%;
  color: white;
  height: fit-content;
}

/*# sourceMappingURL=index.css.map */
