  /************* ELEMENT SELECTORS *************/
  body {
    font-family: "Montserrat";
    text-align: center;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Montserrat";
    font-weight: 900;
  }
  
  em {
    font-size: 1.8rem;
  }

  /************* COMMON STYLES *************/
  .text-justify {
    text-align: justify;
  }

  .text-wrap {
    text-wrap: auto;
  }

  .text-center {
    text-align: center;
  }

  /************* CLASS SELECTORS *************/
  /* Headings */
  .title-heading {
    font-size: 3.5rem;
    line-height: 1.5;
  }  
  
  /* Nav bar */
  .navbar {
    padding: 0 0 1.5rem;
  }
  
  .navbar-brand {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .nav-item {
    padding: 0 18px;
  }
  
  .nav-link {
    font-size: 1.2rem;
    font-family: "Montserrat";
    font-weight: 400;
  }
  
  /* Sections */
  .colored-section {
    background-color: #0979CA;
    color: #fff;
  }
  
  .white-section {
    background-color: #fff;
  }
  
  /* Title section */
  .container-fluid {
    padding: 2% 15% 2%;
  }
  
  .landing-img {
    width: 375px;
    height: 375px;
    border-radius: 100%;
    border: 10px solid #fff;
  }
  
  /* Features section */
  .feature-title {
    font-size: 1.5rem;
  }
  
  .feature-icon {
    color: #0979CA;
    margin-bottom: 1rem;
  }
  
  .feature-icon:hover {
    color: #146EBE;
  }

  .waitlist-container {
    height: 600px;
    width: 100%;
  }
  
  /* Call to action */  
  #cta {
    padding-bottom: 3%;
  }

  .cta-h3 {
    padding: 3% 15%;
    font-size: 3rem;
  }
  
  /* Footer */
  #footer {
    background-color: #fff;
    padding-top: 2%;
  }
  
  .footer-icons-row {
    margin-bottom: 20px;
  }
  
  .footer-icon {
    display: inline;
    padding: 0.5%;
  }
  
  /************* ID SELECTORS *************/
  #title {
    text-align: left;
  }

  #title p {
    font-size: 1.2rem;
  }
  
  #features {
    position: relative;
    padding: 3% 15%;
  }
  
  #features p {
    font-size: 1.2rem;
    color: #8f8f8f;
  }
  
  /* Media Queries */
  @media only screen and (max-width: 992px) {
    .landing-img {
      width: 250px;
      height: 250px;
      margin-bottom: 2rem;
    }

    .waitlist-container {
      height: 400px;
      width: 400px;
    }
  
    #title {
      text-align: center;
    }

    .title-heading {
      font-size: 2.5rem;
      padding-bottom: 2rem;
    }

    .wrapper {
      display: table;
      width: 100%;
    }

    .wrapper div:nth-child(1) {
      display: table-footer-group;
    }
  
    p {
      font-size: 1.6rem;
    }

    #features {
      padding: 10% 15%;
    }
  
    #features p {
      font-size: 1.2rem;
    }

    .gap {
      gap: 2rem;
    }

    .cta-h3 {
      padding: 10% 15%;
      font-size: 2rem;
    }
  
    #features h3 {
      font-size: 2rem;
    }

    #footer p {
      font-size: 1rem;
    }
  
    .footer-icon {
      font-size: 1.5rem;
    }
  
    .nav-link {
      font-size: 2rem;
    }
  }