:root {
  --color-brand: #5081ff;
  --color-brand-light: #bbd1fd;
  --color-brand-rgb: 86, 139, 250;
  --color-brand-dark: #4168bc;
  --color-brand-dark-rgb: 65, 104, 188;
}

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

html {
  scroll-behavior: smooth;
  /* clip decorative elements that intentionally bleed past the edges
     (logos-strip corner dots, marquee tracks) so they don't create a
     horizontal scrollbar */
  overflow-x: clip;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Cabin", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}
