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

html {
  font-size: calc(100vw / 1440 * 10);
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  background-color: gray;
  color: white;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  color: white;
}

/* primeira rolagem */
main {
  width: 100vw;
  min-height: 100vh;
}

main header {
  position: fixed;
  width: 100vw;
  height: 100vh;
  padding: 5rem 10rem 5rem 10rem;
  pointer-events: none;
  z-index: 1;
}

main header h1 {
  font-size: 2rem;
  text-transform: uppercase;
}

main header a {
  display: block;
  font-size: 2rem;
  text-transform: uppercase;
  pointer-events: auto;
}

.lista {
  width: 100vw;
  min-height: 100vh;
}

.lista__item {
  position: relative;
  background-color: black;
}

.lista__item__picture img {
  display: block;
  width: 100vw;
  height: 100vh;
  opacity: 0.7;
  object-fit: cover;
}

.lista__item p {
  position: absolute;
  font-size: 5rem;
  line-height: 1;
  bottom: 15rem;
  padding: 0 10rem;
  width: 80vw;
  text-transform: uppercase;
  opacity: 0.7;
}

.lista__item__content {
  position: absolute;
  bottom: 15rem;
  padding: 0 10rem;
  width: 80vw;
}

.lista__item__content__title {
  font-size: 3rem;
  text-transform: uppercase;
}

p.lista__item__content__text {
  position: relative;
  font-size: 3rem;
  line-height: 1;
  bottom: 0rem;
  padding: 0 0rem;
  width: 50vw;
  opacity: 0.7;
}

/* responsividade */
@media screen and (max-width: 750px) and (orientation: portrait) {
  html {
    font-size: calc(100vw / 768 * 10);
  }

  main header {
    padding: 10rem 5rem 15rem 5rem;
  }

  main header h1 {
    font-size: 4rem;
    text-transform: uppercase;
  }

  main header p {
    position: absolute;
    bottom: 20rem;
    font-size: 4rem;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0.7;
  }

  main header a {
    display: block;
    font-size: 3.5rem;
    text-transform: uppercase;
    pointer-events: auto;
    margin-top: 1rem;
  }

  .lista__item p {
    font-size: 4rem;
    line-height: 1.2;
    bottom: 15rem;
    width: 100vw;
    text-transform: uppercase;
    opacity: 0.7;
    padding: 10rem 5rem 0rem 5rem;
  }


.lista__item__content {
  position: absolute;
  bottom: 15rem;
  padding: 0 10rem;
  width: 90vw;
}

.lista__item__content__title {
  font-size: 3rem;
  text-transform: uppercase;
}

p.lista__item__content__text {
  position: relative;
  font-size: 3rem;
  line-height: 1;
  margin-top: 1rem;
  bottom: 0rem;
  padding: 0 0rem;
  width: 80vw;
  opacity: 0.7;
}

/* responsivid
}
