html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

/* Custom Style*/
body {
  background: linear-gradient(180deg, #252525 0%, #1D1D1D 64.71%, #000000 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000000;
}

h2 {
  font-family: 'Roboto', sans-serif;
  font-style: bold;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #FFFFFF;
}

h1, h3, h4, h5, h6, ul {
  font-family: 'Roboto', sans-serif;
  color: #FFFFFF;
}

p {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFFFFF;
  padding-bottom: 1.5rem;
}

a {
  color: #999999;
}
a:hover, a:focus {
  color: #FFFFFF;
}

.modal__wrapper p {
  padding-bottom: 1rem;
  margin: 0;
}

.container {
  margin-right: auto;
  margin-left:  auto;
  max-width: 960px;
  padding-right: 10px;
  padding-left:  10px;
}

.main {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 12rem 0;
}

.left__column > * {
  padding: 1rem;
}

.left__column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer{
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.footer .footer__modal {
  background: none;
  border: none;
  padding: 0 2rem;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.3rem;
  text-align: center;
  color: #999999;
  text-decoration: none;
}

.close--modal {
  background: none;
  border: none;
  padding: 0 2rem;
  text-align: center;
  position: absolute;
  left: 3rem;
  top:  3rem;
}

.top--section {
  padding: 3rem 0;
}

.modal__wrapper {
  padding-bottom: 8rem;
}

/*Image styles*/
.hero--logo {
  max-width: 140px;
  height: auto;
}

.modal--logo {
  max-width: 82px;
  height: auto;
}

.download__badge {
  max-width: 120px;
  height: auto;
}

.download__icon:last-of-type .download__badge {
  padding-bottom: 3rem;
}

.hero--subtext {
  max-width: 277px;
  height: auto;
}

.app--mockup {
  max-height: 463px;
  width: auto;
}


/* Helper */
.hidden,
[hidden] {
  display: none !important;
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

@media only screen and (max-width: 480px) {
  .main {
    flex-direction: column-reverse;
    padding: 3rem 0;
  }

  .container {
    padding: 2rem;
  }

  .close--modal {
    left: 0;
  }

  .top--section {
     padding-top: 4rem;
    padding-bottom: 1rem;
  }
  .app--mockup {
    max-width: 291px;
  }

  .hero--subtext {
    max-width: 230px;
  }

  .download__badge {
    padding-bottom: 0;
  }

  .hero--logo {
    max-width: 120px;
  }

  .footer .footer__modal {
    font-size: 1rem;
    line-height: 1.3;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    padding: 3rem;
  }

  .close--modal{
    left: 0.2rem;
  }
  .top--section {
    padding-bottom: 1rem;
  }
}

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

