body {
    background-color: #000;
    color: #FFF;
    font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
  }
  a {
    text-decoration: none;
    color: #999;
  }
  h1 {
    font-size: 1.5rem;
    margin: 0;
  }
  h2 {
    margin:0;
    font-size: 1.2rem;
    padding:0;
  }
  header {
    margin: 60px 0;
    text-align: center;
    border-bottom: 1px solid #333;
  }
  footer {
    margin: 30px 0;
    text-align: center;
  }
  .container {
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  img {
    height: auto;
    max-width: 90% !important;
  }
  p.content {
    margin-top: 20px;
  }
  .flex {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 920px;
  }
  .flex-column {
    flex-direction: column;
  }
  .social-btns {
    flex-direction: row !important;
    width: 100%;
  }
  .app-btn {
    width: 45%;
    max-width: 160px;
    color: #fff;
    margin: 20px 10px;
    text-align: left;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Lucida Grande", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
  }
  .app-btn.blu {
    background-color: #333;
    transition: background-color 0.25s linear;
  }
  .app-btn.blu:hover {
    background-color: #454545;
  }
  .app-btn i {
    width: 20%;
    text-align: center;
    font-size: 28px;
    margin-right: 7px;
  }
  .app-btn .big-txt {
    font-size: 17px;
    text-transform: capitalize;
  }
  .small-text {
    font-size: 12px;
  }
  .dl-buttons {
    flex: 1;
    min-width: 400px;
  }
  
  @media only screen and (max-width: 600px) {
    .social-btns {
      flex-direction: column !important;
      text-align: center;
    }
    .flex-column {
      align-items: center;
    }
  }
  @media only screen and (max-width: 400px) {
    .dl-buttons {
      flex: 1;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 20px;
    }
    .app-btn {
      margin: 10px 10px;
    }
  }