/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  font-family: Poppins, Roboto, Arial, sans-serif;
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-white);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
}

:root {
  --color-header: #333333;
  --color-text: #444444;
  --color-primary: #EA9F50;
  --color-secondary: #0866BC;
  --color-dark: #222222;
  --color-light-dark: #777777;
  --color-light-gray: #e5e5e5; 
  --color-tint: #F8F8F8;
  --color-white: #e8f4fd;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 40px;
  --space-7: 60px;
}