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

:root {
  --light: #e5e5e5;
  --gray: #cecece;
  --dark: #151515;
  --text: black;

  --red: #db0007;
  --orange: #ffbc0d;
  --yellow: #ffcd4b;
  --green: #004e31;

  --error: var(--red);
  --border: var(--gray);
  --disabled: var(--light);
}

html {
  font-variant-ligatures: none;
  -webkit-user-select: none;
  user-select: none;

  overflow: hidden auto;
  scroll-behavior: smooth;
  overscroll-behavior: contain;

  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0px;
  min-height: 100dvh;

  color: var(--text);
  background-color: white;

  font:
    normal 400 16px / 1.4 Speedee,
    system-ui, -apple-system,
    Helvetica, sans-serif,
    BlinkMacSystemFont;
}

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

button {
  background-color: transparent;
  border: 2px solid black;

  font-family: Speedee;
  font-weight: bold;

  cursor: pointer;
  outline: none;
  padding: 0px;
}

a {
  &:hover,
  &:focus,
  &:active,
  &:visited {
    outline: none;
  }

  color: var(--text);
}

img, svg, figure {
  vertical-align: top;
  max-width: 100%;
}
