body,
html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
}

#lottie-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.85;
}

#content {
  position: fixed; /* Keeps the container over other content */
  top: 0;
  left: 0;
  width: 100vw; /* Full width */
  height: 90vh; /* Full height */
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

#logo {
  opacity: 0;
  height: auto;
  /* margin-bottom: 10px; */
}

#tagline {
  opacity: 0;
  font-size: 30px;
  font-weight: 400;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
  color: #000000;
}

#contact {
  /* opacity: 0; */
  font-size: 18px;
  font-weight: 500;
  margin-top: 32px;
  color: #000000;
  white-space: nowrap;
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  font-size: 12px;
}

a {
  color: #2673ff;
}

.title {
  font-size: 32px;
  font-weight: 500;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
  color: #343941;
  margin-top: 12px;
}

.padder {
  padding-left: 20px;
  padding-right: 20px;
}

.accent {
  font-weight: 700;
  color: #2673ff;
}

.magictime {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (print), (prefers-reduced-motion) {
  .magictime {
    -webkit-animation: unset !important;
    animation: unset !important;
    transition: none !important;
  }
}

.slideUp {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}

@-webkit-keyframes slideUp {
  0% {
    opacity: 1;
    transform-origin: 0 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: translateY(-20%);
  }
}

@keyframes slideUp {
  0% {
    opacity: 1;
    transform-origin: 0 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: translateY(-20%);
  }
}

.vanishIn {
  -webkit-animation-name: vanishIn;
  animation-name: vanishIn;
}

@-webkit-keyframes vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    filter: blur(90px);
  }
  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    filter: blur(0px);
  }
}

@keyframes vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    filter: blur(90px);
  }
  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    filter: blur(0px);
  }
}
