.container {
  overflow: hidden;
  h2 {
    font-size: 2rem;
  }

  p {
    font-size: 1.2rem;
  }

  @media only screen and (min-width: 900px) and (max-width: 1200px) {
    h2 {
      font-size: 1.7rem;
    }

    p {
      font-size: 1.1rem;
    }
  }

  @media only screen and (min-width: 600px) and (max-width: 900px) {
    h2 {
      font-size: 1.5rem;
    }
    p {
      font-size: 1rem;
    }
  }

  @media only screen and (max-width: 600px) {
    h2 {
      font-size: 1.3rem;
    }
    p {
      font-size: 0.9rem;
    }
  }
}
