body {
  margin: 0px;
}

main {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: table;
  margin: 0 auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.tableCell {
  display: table-cell;
  vertical-align: middle;
}

hr {
  border: 0;
  background: paint(curved-line);
}

.line {
  width: 200%;
  height: 50px;
  transform: translate3d(0, 0, 0);
  animation: moveSlideshow 12s linear infinite;
}

@keyframes moveSlideshow {

  100% {
    transform: translateX(-50%);
  }

}
