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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--wf-font);
  font-size: var(--wf-font-size);
  line-height: var(--wf-line);
  font-weight: var(--wf-weight-normal);
  color: var(--wf-text);
  background: var(--wf-bg);
  min-height: 100vh;
}

a {
  color: var(--wf-primary);
  text-decoration: none;
}

a:hover {
  color: var(--wf-primary-hover);
}

img {
  max-width: 100%;
  display: block;
}

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

h1, h2, h3, h4 {
  margin: 0 0 var(--wf-space-3);
  font-weight: var(--wf-weight-bold);
  line-height: 1.25;
  color: var(--wf-text);
}

h1 { font-size: var(--wf-font-size-2xl); }
h2 { font-size: var(--wf-font-size-xl); }
h3 { font-size: var(--wf-font-size-lg); }

p {
  margin: 0 0 var(--wf-space-3);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wf-muted {
  color: var(--wf-text-muted);
}

.wf-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
