* {
  margin: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  min-height: fill-available;
  min-height: -webkit-fill-available;
}

html {
  height: fill-available;
  height: -webkit-fill-available;
}

.hero {
  position: relative;
  max-height: 100svh;
  height: 100vh;
  background-color: black;
}

.hero__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(hero.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.hero__legals {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  font-family: "zuume", sans-serif;
  font-weight: normal;
  background-color: black;
  color: white;
  text-align: center;
  padding: 16px 20px;
  font-size: clamp(12px, 3vw, 20px);
  letter-spacing: 0.25em;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero__image {
    background-size: cover;
  }
}

@media (max-aspect-ratio: 1 / .7) {
  .hero__image {
    background-size: cover;
  }
}
