@import './colors.css';

h1 {
  font-size: 30pt;
}

p > b {
  font-weight: bold;
  color: black;
}

.landing-image-container {
  background: url('./../assets/images/other-pages/faq-header-image-mobile.jpg');
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position-y: center !important;
  background-position-x: center !important;
}

/* ------------ Responsive Breakpoints ------------ */

@media only screen and (min-width: 768px) {

}  

@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 40pt;
  }

  p {
    font-size: 13pt !important;
    letter-spacing: 1px;
  }
  
  .landing-image-container {
    background: url('./../assets/images/other-pages/faq-header-image.jpg');
  }
}  
