@import url(//hello.myfonts.net/count/3bb155);
/* @import must be at top of file, otherwise CSS will not work */

@font-face {
    font-family: 'HelveticaNeueLTPro-Bd';
    src: url(/dist/client/a69ce9c0d611d0866111.woff2) format('woff2'), url(/dist/client/fef0c66794b21a3d8a78.woff) format('woff');
    font-display: swap;
}

*{
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Add an offset to the link target so that it isn't obscured by the menu when we scroll to it
 * This only works if the target can collapse its margin with its children - i.e. not flexbox or grid
 * https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_box_model/Mastering_margin_collapsing
 */
:target::before {
  content: '';
  display: block;
  margin: -75px 0 0;
  height: 75px;
}

body {
    margin: 0;
    background: #fff;
}
::selection {
    background: #E8DDFF;
}
::-moz-selection {
    background: #E8DDFF;
}

img {
  max-width: 100%;
}

