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

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: #000;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  height: 100%;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  color: #fff;
  font-size: 8vw;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

p {
  color: #fff;
  font-size: 1.5em;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.intro-copy {
  width: 10em;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.intro-flex-top {
  display: flex;
  justify-content: space-between;
  align-items: space-between;
}

section {
  margin: 150vh 0;
}

.section-previews {
  position: fixed;
  width: 80em;
  height: 40em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.img {
  width: 100%;
  height: 100%;
  position: absolute;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  overflow: hidden;
}

.spacer {
  width: 100%;
  height: 4em;
  font-size: 0.5em;
  text-decoration: none;
}

@media only screen and (max-width: 640px) {
  h1 {
    font-size: 12vw;
  }

  section {
    margin: 100vh 0;
  }

  .section-previews {
    width: calc(100% - 2em);
    height: calc(100% - 40em);
  }
}
