*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("homepage-v3.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 45%, rgba(0,0,0,0.75) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .hero {
    background-image: url("homepage-v3-mobil-v2e.jpg");
    background-position: center top;
  }
}
