/* Color palettes choosen from
https://coolors.co
*/

@font-face {
  font-family: 'Inter-V';
  src: url('../fonts/inter.var.woff2');
}

@font-face {
  font-family: 'Comic';
  src: url('../fonts/ComicRelief-Regular.ttf');
}

:root
{
  --color1: #dad7cd;
  --color2: #a3b18a;
  --color3: #588157;
  --color4: #3a5a40;
  --color5: #344e41;

  /* Font stack to ensure some generic family fonts for different browsers */
  --FontDefault: 'Courier New', Courier, monospace;
  --FontSet1:  system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --FontSet2: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --FontSet3: fantasy;
  --FontCustom: 'Comic';
}

body{
  background-color: var(--color1);
}   



