/* css theme for portersealdenver.com */

body {
  font-family: var(--font-base);
  font-weight: var(--weight-base);
  font-size: var(--size-base);
  color: var(--color-text);
  background-color: var(--color-background);
}

a,
button,
h1,
h2,
h3,
h4,
h5,
strong {
  font-family: var(--font-bold);
  font-weight: var(--weight-bold);
}

h1 {
  font-size: var(--size-h1);
}

h2 {
  font-size: var(--size-h2);
}

h3 {
  font-size: var(--size-h3);
}

h4 {
  font-size: var(--size-h4);
}

h5 {
  font-size: var(--size-h5);
}

input {
  border: var(--border-medium) solid var(--color-secondary);

  &:focus {
    outline: none;
    border-color: var(--color-light-accent);
  }
}
