
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
    box-sizing: border-box;
  }
  /*
    2. Remove default margin
  */
  * {
    margin: 0;
  }
  /*
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
  */
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  /*
    5. Improve media defaults
  */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  /*
    6. Remove built-in form typography styles
  */
  input, button, textarea, select {
    font: inherit;
  }
  /*
    7. Avoid text overflows
  */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  /*
    8. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }


  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  
  article, aside, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section {
    display: block;
  }
  body {
    line-height: 1;
  }
  ol, ul {
    list-style: none;
  }
  a {
    text-decoration: none;
    color: black;
  }
  blockquote, q {
    quotes: none;
  }
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  img, iframe {
    vertical-align: bottom;
    max-width: 100%;
  }
  
  input, textarea, select {
    font: inherit;
  }


/* Reset Above, Style Below */

/* @font-face {
    font-family: 'apl333';
    src: url(apl333.ttf);
    font-weight: normal;
  } */


@font-face{
    font-family: "haskoy";
    src: url("haskoy.woff2") format("woff2");
}  

body {
    max-width: 750px;
    padding-left: 50px;
    font-family: 'haskoy';   
    font-size: calc(15px + 0.390625vw);     
    letter-spacing: -0.5px;
}

.header-holder {
    display: flex;
    flex-direction: row;
    height: 25px;
    gap: 8px;
    padding: 16px 0 48px 0;
}

img {
    height: 20px;
}

p {
    padding: 8px 0 16px 0;
    max-width: 75%;
    line-height: 125%;

}

a {
    box-shadow: inset 0 0 0 0 #FF5A00;
    color: #FF5A00;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    transition: color .25s ease-in-out, box-shadow .25s ease-in-out;
  }
  a:hover {
    /* box-shadow: inset 500px 0 0 0 #FF5A00; */
    color: white;
    background-color: #FF5A00;
  }

  h1 {
    font-size: 3rem;
    padding: 24px 0 48px 0;
    font-weight: 700;
  }

  h5 {
    font-size: .75rem;
    padding: 24px 0 48px 0;
  }