@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

@font-face {
  font-family: 'Atlas Grotesk Web';
  src: url('/assets/fonts/AtlasGrotesk-Bold-Web.eot');
  src: url('/assets/fonts/AtlasGrotesk-Bold-Web.eot?#iefix') format('embedded-opentype'),
       url('/assets/fonts/AtlasGrotesk-Bold-Web.woff2') format('woff2'),
       url('/assets/fonts/AtlasGrotesk-Bold-Web.woff') format('woff');
  font-weight:  700;
  font-style:   normal;
  font-stretch: normal;
}

@font-face {
  font-family: 'Atlas Grotesk Web';
  src: url('/assets/fonts/AtlasGrotesk-Medium-Web.eot');
  src: url('/assets/fonts/AtlasGrotesk-Medium-Web.eot?#iefix') format('embedded-opentype'),
       url('/assets/fonts/AtlasGrotesk-Medium-Web.woff2') format('woff2'),
       url('/assets/fonts/AtlasGrotesk-Medium-Web.woff') format('woff');
  font-weight:  500;
  font-style:   normal;
  font-stretch: normal;
}

@font-face {
  font-family: 'Atlas Grotesk Web';
  src: url('/assets/fonts/AtlasGrotesk-Regular-Web.eot');
  src: url('/assets/fonts/AtlasGrotesk-Regular-Web.eot?#iefix') format('embedded-opentype'),
       url('/assets/fonts/AtlasGrotesk-Regular-Web.woff2') format('woff2'),
       url('/assets/fonts/AtlasGrotesk-Regular-Web.woff') format('woff');
  font-weight:  400;
  font-style:   normal;
  font-stretch: normal;
}

html,
body {
  height: 100%;
}

body {
  background: #FFFFFF;
  color: #0D1A29;
  text-align: center;
  font-family: 'Atlas Grotesk Web', 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  overflow-y: auto;
  overflow-x: hidden;
}

strong {
  font-weight: 600;
}

h5 {
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
}

.red {
  color: red;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: relative;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
  text-align: center;
  background: #FAFAFA;
  border: 0;
}

.topbar > button {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-54%);
}

@media only screen and (max-width: 800px) {
  .topbar {
    padding: 1.5rem;
  }
  .topbar > button {
    right: 1rem;
  }
}

.logo {
  display: inline-block;
  width: 102px;
  height: 16px;
  background: transparent url('logo.png') no-repeat center;
  background-size: 102px 16px;
  text-indent: -9999em;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero {
  background: #FAFAFA none no-repeat top left;
  background-size: 100% 100%;
  padding: 2.5rem 3rem 0;
  box-shadow: 0 -1px 0 #E2E8ED;
  border: 1px solid #E2E8ED;
  border-width: 0 0 1px;
}

.hero-screenshot {
  margin: 3rem 0 -3px;
}

.hero-screenshot img {
  width: 100%;
  max-width: 960px;
  height: auto;
}

@media only screen and (max-width: 800px) {
  .hero {
    padding: 50px 20px 0;
  }
  .hero-screenshot img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 400px) {
  .hero {
    background-image: none;
  }
}

.extra {
  padding: 0.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.text {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #666C72;
  line-height: 24px;
}

.header {
  width: 95%;
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
  font-weight: 700;
  font-size: 2.25rem;
}

@media only screen and (max-width: 400px) {
  .header {
    font-size: 2rem;
  }
}

.description {
  width: 95%;
  max-width: 35rem;
  color: #666C72;
  text-align: center;
  line-height: 1.5em;
  font-weight: 400;
  font-size: 1.25rem;
  margin: 0 auto 0.5rem;
}

@media only screen and (max-width: 400px) {
  .description {
    font-size: 1rem;
  }
}

.copyright {
  background: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  color: #192534;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 -1px 0 #E2E8ED;
}

.action {
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;

  cursor: pointer;
  box-sizing: border-box;
  margin: 2rem auto 0;
  height: 3rem;
  padding: 0 2rem;
  background: #0055FF;
  border: 0 none;
  border-radius: 4px;
  color: #FFFFFF;
  text-align: center;
  line-height: 3rem;
  font-family: 'Atlas Grotesk Web', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 75ms linear;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.action:hover {
  background: #004de6;
}

.action.action--small {
  margin: 0;
  height: 2rem;
  line-height: 2rem;
  padding: 0 1.25rem;
  border-radius: 3px;
  font-size: 0.8rem;
}

.action.action--small:hover {
  background: #4084F4;
  color: #FFFFFF;
}
