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

/* Remove default padding */
ul,
ol,
button {
padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
font-size: 1rem;
margin: 0;
}

/* Set core body defaults */
body {
scroll-behavior: smooth;
}

ul,
ol {
list-style: none;
}

a {
text-decoration: none;
color: inherit;
}

/* attempt to remove ios flash on touch over click target */
a, button, input, textarea, select {
-webkit-tap-highlight-color: transparent;
}

button{
cursor: pointer;
outline: none;
border: none;
background: transparent;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
* {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
}
/* TODO: define fonts */
/* DIN Pro Regular */
@font-face {
  font-family: "DinPro";
  src: url("/fonts/DINPro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

/* DIN Pro Light */
@font-face {
  font-family: "DinPro";
  src: url("/fonts/DINPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

/* DIN Pro Medium */
@font-face {
  font-family: "DinPro";
  src: url("/fonts/DINPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

/* DIN Pro Bold */
@font-face {
  font-family: "DinPro";
  src: url("/fonts/DINPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/* DIN Pro Bold Italic */
/* @font-face {
  font-family: "DinPro";
  src: url("/fonts/DINPro-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: block;
} */



html,body{
  font-family: 'DinPro';
  font-size: 14px; 
  background-color: #ffffff;
  color: #000000;
  line-height: 1.5;
  font-weight: normal;
  overscroll-behavior: none;
}