* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -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";
}
@media screen and (prefers-color-scheme: dark) {
  body {
    color: white;
  }
}
body .root {
  width: 100%;
  height: 100%;
  background-color: white;
}
@media screen and (prefers-color-scheme: dark) {
  body .root {
    background-color: #111827;
  }
}
body .root .title {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
}
body .root .title .title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
}
body .root .title .title-container svg {
  width: 2.5rem;
  height: 2.5rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
body .root .title .title-container h1 {
  font-size: 3.75rem;
  font-weight: bold;
}
body .root .boing {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  bottom: 2rem;
  animation: bounce 1s infinite;
}
body .root .boing .text {
  font-size: 1.5rem;
  text-align: center;
}
body .root main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
}
body .root main .main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}
@media (min-width: 1024px) {
  body .root main .main-container {
    width: 50%;
  }
}
body .root main .main-container p {
  padding: 0.25rem;
  text-align: center;
}
body .root footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1.25rem 5rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

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