/* Reset / base */
* {
  box-sizing: border-box;
}

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

body {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: white;
}

/* Hero section */
.hero {
  height: 100vh;
  width: 100%;
  background-image: url("bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  padding: 6rem;
}

/* Text block */
.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 0.5rem 0;
}

.hero p {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.65;
  margin: 0;
}
