@font-face {
  font-family: "Nunito";
  src: url("/fonts/Nunito/Nunito-VariableFont_wght.ttf") format("truetype-variations");
  font-display: fallback;
}

:root {
  --color-1: #353535;
  --color-2: #FFEBD5;
  --color-3: #F3E7D6;
  --grid-unit: 8px;
  --animation-duration-unit: 1s;
  --animation-easing: ease-in-out;
}

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: calc(var(--grid-unit) * 2);
  background-color: var(--color-2);
}

* {
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

figure {
  margin: 0;
}

path.anim-color-1, rect.anim-color-1, .anim-color-1 path {
  fill: var(--color-1);
  stroke: var(--color-1);
}

path.anim-color-2, rect.anim-color-2, .anim-color-2 path {
  fill: var(--color-2);
  stroke: var(--color-2);
}

path.anim-color-3, rect.anim-color-3, .anim-color-3 path {
  fill: var(--color-3);
  stroke: var(--color-3);
}

@media only screen and (max-width: 600px) {
  h1, h2 {
    font-size: 1em;
  }
}

@media (orientation: landscape) and (max-width: 600px) {
  h1, h2 {
    font-size: 1em;
  }
}