/*
 * CSS Reset
 * Based on Fix by Jayden Seric
 * https://github.com/jaydenseric/Fix
 */
* {
  box-sizing: border-box;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  line-height: 1;
  font-family: sans-serif;
}
iframe {
  border: 0;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
li {
  display: block;
  list-style-type: none;
}
dl {
  margin-top: 0;
  margin-bottom: 0;
}
dd {
  margin-left: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: inherit;
}
blockquote {
  margin: 0;
  padding: 0;
}
p {
  margin-top: 0;
  margin-bottom: 0;
}
strong {
  font-weight: 400;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: 0;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
  overflow: visible;
}
button:focus {
  outline: none;
}
::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  -webkit-appearance: none;
}
/*
 * App
 */
:root {
  --tokens__font-family-sans: "DM Sans", sans-serif;
  --tokens__transition: all 0.2s;
  --main__padding__v: 2rem;
  --main__padding__h: 1rem;
}
@media (min-width: 900px) {
  :root {
    --main__padding__v: 3rem;
    --main__padding__h: 4rem;
  }
}
html {
  font-size: 20px;
}
body {
  font-family: var(--tokens__font-family-sans);
  font-weight: 400;
  background: white;
  color: black;
}
main {
  padding: var(--main__padding__v) var(--main__padding__h);
}
p {
  line-height: 1.5;
}
p + p {
  margin-top: 1rem;
}
a {
  text-decoration: underline;
  transition: var(--tokens__transition);
  transition-property: opacity;
}
a:hover {
  opacity: 0.5;
}
