html, body {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main section {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

main section .slider {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

main section .slider .item {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  scroll-snap-align: start;
  font-family: "Source Sans 3", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main section .slider .item > h1 {
  font-size: 8vw;
}

main section .slider .item article {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3vw;
  margin-bottom: 3vw;
}

main section .slider .item article img {
  width: 100%;
  opacity: 0;
}

main section .slider .item article h1 {
  font-size: 8vw;
  text-transform: uppercase;
}

main section .slider .item article p {
  font-size: 4vw;
  font-family: "Roboto", sans-serif;
}

main section .slider .item:nth-of-type(1), main section .slider .item:nth-of-type(3) {
  background-color: white;
  color: black;
}

main section .slider .item:nth-of-type(2), main section .slider .item:nth-of-type(4) {
  background-color: black;
  color: white;
}

@media only screen and (min-width: 1080px) {
  main section .slider .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main section .slider .item > h1 {
    font-size: 4vw;
  }
  main section .slider .item article {
    width: 60%;
  }
  main section .slider .item article h1, main section .slider .item article p, main section .slider .item article img {
    width: 80%;
    opacity: 0;
  }
  main section .slider .item article h1 {
    font-size: 2vw;
    text-align: center;
  }
  main section .slider .item article p {
    font-size: 1.2vw;
    font-family: "Roboto", sans-serif;
  }
}
/*# sourceMappingURL=history.css.map */