:root {
  --bg: #eee;
  --fg: #44b;
  --fg-dark: #228;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Roboto", sans-serif;
}

body {
  background: var(--bg);
}

a {
  color: unset;
  text-decoration: unset;
}

.material-symbols-sharp {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Hidden visually but present for assistive technology */
.visually_hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.25rem;
}

main {
  padding: 0.25rem;
  padding-right: 0.5rem;
}

@media (min-width: 720px) {
  .page.container {
    display: flex;
  }
}
