*,
*::after,
*::before {
  box-sizing: border-box;
}



html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: $heading-font-weigth;
  margin-bottom: 1rem;
}

body {
  background-color: $body-background-color;
  color: $font-color;
  font-family: $font-family-base;
  font-size: $font-size;
  line-height: $line-height;
}
button {
  font-family: $font-family-base;
  font-size: $font-size;
}
p {
  display: block;
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
  display: inline-block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
code {
  font-family: $font-family-mono;
}
*::placeholder {
  font-family: $font-family-base;
}



ul {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 1.5rem;
  li {
    margin-top: 0.25rem;
  }
}

button {
  &:focus {
    outline: none;
  }
}
input {
  font-family: $font-family-base;
}
