/**
 * @file
 * Fonts
 */

@font-face {
    font-family: "ABCROM";
    src: url("../../fonts/ABCROM/ABCROM-Regular.woff2") format("woff2"),
         url("../../fonts/ABCROM/ABCROM-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
  }


  html {
    font-size: 125%; /* Sets 1rem to be 20px, without overriding the user's browser default */
  }
  
  body {
    font-family: "ABCROM", sans-serif;
    font-size: 1rem; /* 1rem = 20px */
  }

  a {
    color: var(--color-black) !important;
    text-decoration: none;
  }

  a.is-active {
    text-decoration: underline;
    text-underline-offset: 0.15em;
  }


