/*
  This file is for custom css that overrides HTML standards.
*/

body {
  font-family: 'Maven Pro', sans-serif;
  color: #807f7f;
}

h1 {
  font-weight: normal;
  font-size: 40px;
}

/*
  likeh2 is a class to let h1 look like h2
  on some pages there is no header / masterslider (single events / dagw blog etc)
  so they have a h1 on the page instead a h2 and it should look like the others
*/
h2,
h1.likeh2 {
  font-size: 20px;
  color: var(--theme-color);
  font-weight: normal;
  text-transform: uppercase;
}

small {
  font-size: 12px;
}

pre {
  white-space: normal;
}

a {
  color: var(--theme-color);
}

a:focus,
a:hover {
  color: #666666;
  text-decoration: underline;
}

input:focus {
  outline: none;
}