/* Resize logo and header for mobile */
@media screen and (max-width: 769px) {
  .site-headerFrame {
    background-size: cover;
  }
  .header-siteNameLogo {
      width: 25vw;
      height: auto;
  }
}

/* Resize logo and header for desktop */
@media screen and (min-width: 769px) {
  .site-headerFrame {
    background-size: cover;
  }
  .header-siteNameLogo {
      width: 28vw;
      height: auto;
  }
}