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

html {
  /* Smooth, native scrolling of the text over the fixed background */
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;

  /* Fixed background image */
  background-image: url("background.jpeg");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #2b2b2b; /* fallback while image loads / behind letterboxing */
}

/* Fixed menu, top left */
.menu {
  position: fixed;
  top: 42px;
  left: 40px;
  z-index: 10;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* Body text, bottom left.
   Starts low on the screen (~80% down) and scrolls up as the page
   is scrolled, settling with its top around ~35% of the height. */
.body-text {
  max-width: 400px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 80vh;   /* first lines begin ~80% down the viewport */
  padding-bottom: 8vh;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.body-text p {
  margin-bottom: 1.25em;
}

.body-text p:last-child {
  margin-bottom: 0;
}
