@import 'reset.css';
html {
  height: 100%;
  font-size: 100%;
  background: #f9f9f9;
}

.body {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #323232;
  font-family: "Open Sans", sans-serif;
}
.body--playlist {
  align-items: flex-start;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

strong {
  font-weight: 600;
  color: #00BC56;
}

.app {
  width: 85%;
  padding: 3rem 0;
  max-width: 62.5rem;
}
.app__header {
  display: flex;
  margin-bottom: 2.5rem;
  align-items: flex-start;
  justify-content: center;
}
.app__header img {
  width: 80%;
  height: auto;
  display: block;
  max-width: 22.5rem;
}
.app__video {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 7px 10px;
}
.app__footer {
  padding-top: 2rem;
  text-align: center;
  color: #323232;
  line-height: 1.25rem;
}
.app__button {
  border-radius: 4px;
  padding: 1rem 1.5rem;
  display: inline-block;
  background: #00BC56;
  transition: background 200ms ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.05) 0 7px 10px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}
.app__button:hover {
  background: #00a34a;
}

@media all and (min-width: 768px) {
  .app {
    padding: 5rem 0;
  }
  .app__header {
    margin-bottom: 3.5rem;
  }
}
.video {
  position: relative;
  padding: 56.25% 0 0 0;
}
.video__frame {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.playlist {
  width: 100%;
  height: auto;
  display: block;
}
.playlist__video figcaption {
  font-weight: 500;
  text-align: center;
}
.playlist__video:not(:last-child) {
  margin-bottom: 2.5rem;
}
.playlist__link {
  display: block;
  position: relative;
}
.playlist__thumbnail {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 1rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0 7px 10px;
}
.playlist__button {
  height: auto;
  display: block;
  width: 11.4583333%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media all and (min-width: 768px) {
  .playlist__video img {
    margin-bottom: 1.5rem;
  }
  .playlist__video:not(:last-child) {
    margin-bottom: 3rem;
  }
}
@media all and (min-width: 1024px) {
  .playlist__video:not(:last-child) {
    margin-bottom: 4rem;
  }
}
@media all and (min-width: 1200px) {
  .playlist__video:not(:last-child) {
    margin-bottom: 5rem;
  }
}

/*# sourceMappingURL=app.css.map */
