/* HTML element resets and base typography. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: Nunito, Helvetica, sans-serif;
  background-color: var(--background-colour);
  color: var(--text-colour);
  margin: 0;
  font-size: 1rem;
}

h1 {
  color: var(--primary-colour);
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: var(--text-colour);
}

img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
