@import url("gotham.css");
@import url("animation.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::after,
*::before {
  box-sizing: inherit;
}

html, body {
  min-height: 100vh;
}

body {
  font-family: 'Gotham', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.sf-main,
.sf-download {
  min-height: 100vh;
}

.sf-download {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(30,30,30,.8);
  padding-top: 32px;
}

.sf-container {
  padding-left: 16px;
  padding-right: 16px;
}

.sf-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bg-1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.sf-container {
  -webkit-animation-name: animationContent;
  -moz-animation-name: animationContent;
  animation-name: animationContent;

  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;

  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;

  -webkit-animation-delay: .8s;
  -moz-animation-delay: .8s;
  animation-delay: .8s;

  text-align: center;
}

.sf-coach-logo {
  width: 256px;
  height: 57px;
  background-image: url('../images/logo.svg');
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -99999px;
  margin: 0 auto 46px;
}

.sf-title {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.sf-title em {
  display: inline-block;
  background-color: #ffb612;
  color: #1e1e1e;
  line-height: 32px;
  padding: 0 8px;
}

.sf-download p {
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
}

.sf-download p:last-of-type {
  margin-top: 20px;
}

.sf-actions {
  padding-top: 18px;
  padding-bottom: 16px;
  font-size: 0;
}

.sf-actions a + a {
  margin-left: 32px;
}

.sf-hide {
  display: none !important;
}

.sf-btn-app-store,
.sf-btn-play-store {
  display: inline-block;
  width: 121px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 121px 40px;
  text-indent: -99999px;
}

.sf-btn-app-store {
  background-image: url('../images/button-app-store.png');
}

.sf-btn-play-store {
  background-image: url('../images/button-play-store.png');
}

@media screen and (min-width: 768px) {
  .sf-container {
    max-width: 400px;
  }
}
