*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  background: #f6f7f9;
  color: #111;
}

a {
  color: inherit;
}

code {
  background: #f0f1f3;
  padding: 2px 6px;
  border-radius: 6px;
}

main {
  width: min(1500px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.container {
  width: 100%;
}

.hidden {
  display: none !important;
}