*,
*:before,
*:after {
  box-sizing: inherit;
  /* Uncomment next line when you're lost */
  /* border: 1px dotted red; */
}

html {
  height: 100vh;
}

html {
  box-sizing: border-box;
  font-size: clamp(1rem, 0.75rem + 0.75vw, 1.5rem);
}

body {
  background-color: var(--background-color);
  font-family: var(--main-font);
  color: var(--font-color);
  line-height: 1.5;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  font-family: var(--accent-font);
}

ol,
ul {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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