/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  font-family: sans-serif;
}

body {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  background: #fff;
  color: #000;
}

h1, h2, h3, h4, h5, h6,
p, blockquote, figure,
dl, dd {
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
  border: none;
  background: none;
  padding: 0;
  color: inherit;
  outline: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

textarea {
  resize: vertical;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Prevents iOS zoom on form fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="password"],
textarea,
select {
  font-size: 16px; /* stops zoom on focus in iOS */
}

/* Removes default margin on wp-admin bar when logged in */
#wpadminbar {
  margin: 0 !important;
}

/* Makes sure images never blow out of containers */
img {
  max-width: 100%;
  height: auto;
  display: block;
}