html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  background: #000;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("hero-image.png") center / cover no-repeat;
  filter: blur(28px) saturate(1.1) brightness(0.9);
  transform: scale(1.08);
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  max-height: 100vh;
  max-height: 100svh;
  max-height: 100dvh;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}
