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

/* Remove default list styling */
ul, ol {
  list-style: none;
}

/* Remove default link styling */
a {
  text-decoration: none;
  color: inherit;
}

/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Set default focus visible for accessibility */
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Set base font for the document */
html {
  font-size: 16px;
  line-height: 1.5;
}