/**
 * HTML TAGS
 */

 * {
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  
  body {
    font-family: "IBM Plex Sans", serif;
    font-size: 18px;
    font-weight: 100;
  }
  
  a,
  a:link,
  a:visited {
    color: #000000;
  }
  
  h1, h2 {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
  }

  h1 {
    font-size: 48px;
    letter-spacing: -2px;
    line-height: 50px;
    margin: 0 0 24px 0;
    color: #000000;
  }
  
  h2 {
    font-size: 32px;
    color: #333;
    letter-spacing: -0.72px;
    line-height: 36px;
    margin: 16px 0 16px -1.8px;
  }
  
  
  p {
    font-family: "IBM Plex Sans";
    color: #000000;
    font-size: 18px;
    letter-spacing: -0.5px;
    line-height: 24px;
    margin: 8px 0 48px 0;
  }
  
  
  strong {
    font-weight: 500;
  }
  
  small {
    font-size: 80%;
  }
  
  img {
    max-width: 100%;
    margin: 0 auto;
  }
  
  ol li {
    margin-bottom: 30px;
  }
  
  
  /**
   * CUSTOM CLASSES
   */
  
  .container {
    max-width: 700px
  }
  
  .divider {
    display: block;
    width: 700px;
    margin: 40px auto 30px auto;
    border: 0;
    border-top: 1px solid #000000;
  }
  
  .text-align-center {
    text-align: center;
  }

  .hero-title {
    color: #000000;
    font-size: 120px;
    font-weight: 500;
    letter-spacing: -8px;
    line-height: 150px;
    margin: 32px 0 48px 0;
  }


  .hero-description {
    color: #000000;
    font-size: 24px;
    letter-spacing: -0.1px;
    line-height: 24px;
    margin: 0 0 10px 0;
  }
  
  .hero-image {
    border-radius: 0%;
    margin: 64px 0;
  }
  
  .hero-links a {
    display: inline-block;
    font-size: 16px;
    margin: 0 10px;
  }
  
  .margin-top-2 {
      margin-top: 30px;
  }
  
  /**
   * RESPONSIVE
   */
  
  
  @media only screen and (max-width:767px) {
  
    h1 {
      font-size: 32px;
    }
  
    h2 {
      font-size: 24px;
      line-height: 1.2;
    }
  
    .divider {
      margin: 25px auto 20px auto;
    }
  
    .hero-image {
      border-radius: 0%;
      margin: 16px 0;
    }
  
  
  }