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

html,
body {
  height: 100%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 1rem 1rem 3rem;

  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__text {
  position: relative;
  z-index: 1;
  color: #b6b1b1;
  font-family: "Shadows Into Light", cursive;
  font-weight: 200;
  font-size: clamp(1.75rem, 5vw, 3.9rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}