:root {
  --font-primary: "Dancing Script", cursive;
  --paper-height: 88dvh;
}

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

* {
  margin: 0;
  padding: 0;
  /* should be 1.2-1.5 */
  line-height: calc(1em + 0.5rem);
}

body {
  font-family: var(--font-primary);
  font-optical-sizing: auto;
  font-style: normal;

  background-image: url("/imgs/background.png");
  background-repeat: round;
}

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

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

button {
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}
