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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-base);
  font-weight: 400;
  color: var(--potisse-chocolate);
  background: var(--potisse-cream);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  font-weight: 400;
}

.placeholder {
  color: var(--potisse-chocolate-mute);
  font-size: var(--size-sm);
}
