@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300&display=swap");
html {
  overflow: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
}

* {
  padding: 0;
  margin: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

.scroller {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  overflow: scroll;
}

.scroll {
  width: 100%;
  height: 100%;
  margin: 50px 0 50px 0;
}

.counter {
  position: fixed;
  top: 10px;
  right: 10px;
  text-align: right;
  color: white;
  bottom: 10px;
  z-index: 99;
}

.count {
  -webkit-transition: 500ms;
  transition: 500ms;
  cursor: pointer;
  margin-bottom: 5px;
}

.count-1 {
  margin-right: 10px;
}

.clicker-down {
  position: fixed;
  top: 0%;
  left: 0%;
}

.clicker-up {
  position: fixed;
  top: 0%;
  left: 0%;
}

@media only screen and (max-width: 900px) {
  .counter {
    display: none;
  }
}

.grid {
  width: 100%;
  height: 100vh;
  overflow: scroll;
  scroll-behavior: smooth;
  -webkit-transition: 500ms;
  transition: 500ms;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.item {
  height: 100vh;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  scroll-snap-align: start;
}

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

.title {
  color: white;
  position: absolute;
  bottom: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (max-width: 900px) {
  .scroller {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */