@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

html {
  font-family: var(--font-main);
}

:root {
  --font-main: "Montserrat", sans-serif;
  --font-sec: "Cutive Mono", monospace;

  --color-bg: #f9f9f9;
  --color-fg: #191b1f;
  --white: #ffffff;
  --grey: #c0c0c0;
  --lightgrey: #ebebeb;

  --color-neon: #e1ff63;
  --color-red: #f44336;
  --color-darkgrey: #4f4f4f;

  /* Box shadows */
  --b-shadow-xs: 0px 3px 9px -4px rgba(0, 0, 0, 0.21);
  --b-shadow-s: 0px 3px 18px -4px rgba(0, 0, 0, 0.24);

  /* Spacing */
  --space-xs: 5px;
  --space-s: 10px;
  --space-m: 15px;
  --space-l: 20px;
  --space-xl: 30px;

  --radius-sm: 5px;
  --radius: 15px;

  --padding-btn: 0.75em 1.5em;
  --padding-card: 1.5rem;
  --padding-header: 1.2rem 1rem;
  --padding-form: 15px 50px;
}

input {
  outline: 0.5px solid var(--grey-l);
  border: none;
  border-radius: 4px;
  padding: 5px;
  margin-top: 5px;
  accent-color: var(--dark);
  display: block;
}

input:focus {
  border: none;
}

input:active {
  border: none;
  outline: none;
}

input[type="radio"] {
  outline: 0;
}

input[type="number"],
input[type="text"],
select {
  appearance: none; /* fjerner native pil */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  /* border: 1px solid #ccc; */
  background-color: #fff;
  width: 100%;
  max-width: 300px;
  /* box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05); */
  outline: none;
}

/* Genrel styling for radio btn and checkbox */
input[type="radio"],
input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  accent-color: var(--color-darkgrey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

a {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}

h1 {
  font-weight: 500;
  text-transform: uppercase;
  /*letter-spacing: -0.06em;
    line-height: 0.3em;*/
}

h2 {
  text-transform: uppercase;
  color: var(--color-fg);
  font-weight: 600;
}

h3 {
  font-weight: 1000;
  text-transform: uppercase;
  display: inline-block;
}

h4 {
  /* text-transform: uppercase; */
  color: var(--color-fg);
  font-weight: 400;
}

label {
  font-size: 0.9rem;
}

th {
  text-transform: uppercase;
  font-weight: 600;
}
td {
  font-weight: 300;
}
