/*** CSS reset & common sense styles ***/

@font-face {
  font-family: Poppins;
  src: url('/poppins-v15-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('/poppins-v15-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('/poppins-v15-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

html {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

body,
#sapper {
  flex: 1;
  height: 100%;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu,
    Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

* {
  box-sizing: border-box;
  transition: background-color 400ms ease, opacity 400ms ease, color 250ms ease,
    stroke 200ms ease-out, fill 200ms ease-out, transform 200ms ease-in-out;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

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

button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

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

input::-moz-focus-inner {
  border: 0;
  margin: 0;
  padding: 0;
}

ul,
ol,
dd,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none;
  }
}
