* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 5%;
}

body {
  background: #ffffff;
}

.hero {
  height: 95dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3vmin;
  padding: 5vmin 5vmin 8vmin;
  overflow: hidden;
}

.logo {
  width: auto;
  height: auto;
  max-width: min(800px, 100%);
  max-height: 55dvh;
  object-fit: contain;
}

.hero h1 {
  text-align: center;
  margin: 0;
}

