
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Media Queries for common screen sizes */
@media only screen and (max-width: 480px) {
  /* Styles for mobile devices */
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* Styles for smaller tablets */
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  /* Styles for larger tablets */
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  /* Styles for desktops */
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 27px;
  }
  h4 {
    font-size: 21px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 13px;
  }
}

@media only screen and (min-width: 1201px) {
  /* Styles for large screens */
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 27px;
  }
  h4 {
    font-size: 21px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 13px;
  }
}
