h1 {
  font-weight: bold;
  font-size: 22px;
}

h2 {
  font-weight: bold;
  font-size: 20px;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  text-align: center;
  padding: 16px;
}

.app-screenshot-container {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  justify-content: center;
}

.app-screenshot-container img {
  flex: 0 0 auto;
  width: 300px;
  margin-right: 20px;
  scroll-snap-align: start;
}

button {
  padding: 10px 20px;
  font-size: 16px;
}

.badge-container {
  margin-top: 20px;
  margin-bottom: 20px;
}

a {
   text-decoration: none; /* Gets rid of dirty default underline */
}

footer {
  padding: 10px;
  font-size: 14px;
  color: #777;
}

@media screen and (max-width: 600px) {
  .app-screenshot-container {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    justify-content: flex-start;
    margin-left: 0px;
  }

  .app-screenshot-container img:last-child {
    margin-right: 20px;
  }
}
