/* ============================================================
   RESET.CSS — Boarderless
   Minimal modern reset. Normalizes browser defaults.
   Do not add project-specific styles here.
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}
