/* style-home.css */
.splash-body {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #31FF2F;
}

.splash-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.splash-logo {
  width: min(800px, 70vw);
  height: auto;
}

@media (max-width: 700px) {
  .splash-logo {
    width: 90vw;
  }
}