h2 {
  color: white;
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  
  .card {
    display: inline-block;
  }
}

.scrolling-wrapper-flexbox {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  
  .card {
    flex: 0 0 auto;
    margin-right: 3px;
  }
}
.scrolling-wrapper-flexbox a {
	text-decoration:none;
	color:dimgrey;
}
.card {
  border: none;
  width: 100%;
  height: 250px;
  background: none;
  margin-right: 15px;
}

.scrolling-wrapper, .scrolling-wrapper-flexbox {
  height: 250px;
  margin-bottom: 20px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  &::-webkit-scrollbar {
    display: none;
  }
}

