/* RESET */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}

/* LAYOUT */
.hero {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100svh; /* iOS-safe viewport */
}

/* BEELD */
.image {
  height: 55vh;
  background-image: url("MixStream_banner_sharp_v1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

/* TEKST */
.content {
  padding: 24px 18px 40px;
  max-width: 700px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
}

.content p {
  margin-bottom: 16px;
}

.content a {
  color: #9fe7ff;
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

/* TABLET */
@media (min-width: 768px) {
  .image {
    height: 60vh;
  }

  .content {
    font-size: 13px;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .hero {
    grid-template-rows: 1fr;
  }

  .image {
    height: 100vh;
  }

  .content {
    position: absolute;
    top: 42%;
    left: 35%;
    background: transparent;
  }
}
