* {
  box-sizing: border-box;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-wrap {
  position: absolute;
  width: 100%;
  overflow: hidden;
  height: 90px;
  background-color: #161616;
  padding-left: 100%;
 padding-top: 30px;

}
.ticker-wrap .ticker {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  white-space: nowrap;
  padding-right: 150px;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 2s;
  animation-duration: 160s;
}
.ticker-wrap .ticker__item {
  display: inline-block;
  font-size: 60px;
  color: #ffffff;
  padding-top: 10px;
}

body {
  padding-bottom: 1rem;
  background-color: #111111;
}

h1, h2, p {
  padding: 0 5%;
   font-size: 18px;
   font-weight:600;
  color: black;
}