body {
  font-family: Helvetica, Arial;
  overflow: hidden;
}

/* scroll width display */
.static-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 5em;
  position: absolute;
  width: 100vw;
  z-index: 1;
}

#infinite-list {
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  overflow: scroll;
  /* ios momentum scroll */
  /* src: https://css-tricks.com/snippets/css/momentum-scrolling-on-ios-overflow-elements/ */
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}
/* hide scroll bar */
/* src: https://stackoverflow.com/questions/16670931/hide-scroll-bar-but-while-still-being-able-to-scroll */
::-webkit-scrollbar { 
  display: none; 
}

.scroll-item {
  height: 100cm;
}
.scroll-item:nth-of-type(2n) {
  background-color: lightgrey;
}



/* info i */
#infooverlay {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.75);
  display: none; /* js to flex*/
  justify-content: center;
  align-items: center;
}
#infooverlay .floatbox {
  background-color: rgba(255,255,255,0.7);
  border-radius: 15px; 
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#infooverlay .floatbox a {
  margin: 10px;
}