

.outer {
	white-space: nowrap;
  overflow-y: hidden;

  -webkit-overflow-scrolling: touch;
}

.wrapper {
  width: 100%;
  
  padding: 1rem;
 
}

.internal {
  display: inline;
  background-color: wheat;
  &:nth-child(odd) {
    background-color: hotpink;
  }
}

.text {
	font-size: 2rem;
	color: white;
	text-align: center;
}



