* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
  background: none;
}

.fly-dither {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fly-dither.loaded {
  opacity: 1;
}

.title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.logo {
  max-width: 400px;
  height: auto;
  flex-shrink: 0;
}

.hero {
  max-width: 600px;
  height: auto;
  margin-top: 10px;
  flex-shrink: 0;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #353535;
  text-align: center;
  padding: 10px;
  font-family: sans-serif;
  font-size: 12px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .logo {
    max-width: 300px;
  }

  .hero {
    max-width: 350px;
    margin-top: 15px;
  }

  .footer {
    font-size: 16px;
    padding: 14px;
  }
}