*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: var(--font-family);
  letter-spacing: -0.5px;
  min-height: 0;
  text-decoration: none;
}

a,
a:hover {
  color: var(--color-booster);
}

html,
body,
#root {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--vh-offset, 0px));
  width: 100vw;
  overflow: hidden;
  background-color: var(--main-background);
}

caption {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
}
