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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--cream);
  color: var(--black);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus {
  outline: 2px solid #2f6df6;
  outline-offset: 3px;
}
