@media only screen and (max-width: 1000px) {
  
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 0.8rem;
  }

  
  .menu {
      display: flex;
      flex-direction: row;
      justify-content: center;
      width: 100%;
  }

  .full-display {
      display: none;
  }
  .mobile-display {
      display: flex;
  }

  .index-main {
      width: 375px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .index-intro {
      flex-direction: column;
      align-items: center;
  }

  .index-logo-container {
    width: 100%;
    padding: 1rem;
  }

  .index-logo {
      align-items: center;
  }

  .index-logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .index-logo-title {
    font-size: 4rem;
    line-height: unset;
    /* line-height: 100px;
    height: 100px; */
  }
  .index-logo-subtitle {
    font-size: 1.5rem;
  }
  .index-logo-text {
    font-size: 1rem;
  }

  .index-main-image {
    margin-top: 1rem;
  }

  .index-tune-container {
    width: 100%;
  }

  .index-tune {
    flex-direction: column;
    align-items: center;
  }


  .index-easy-container {
    width: 100%;
  }

  .index-easy {
    flex-direction: column;
    align-items: center;
  }

  .index-customize-container {
    width: 100%;
  }

  .index-customize {
    flex-direction: column;
    align-items: center;
  }

}