/* -------------------------------- 

File#: _1_smooth-scrolling
Title: Smooth Scrolling
Descr: Replace the default browser behaviour (jump) with a smooth scrolling transition
Usage: codyhouse.co/license

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

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}



ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: #4279BC;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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



/* variables */
:root {
  /* colors */
  --sc5-color-primary-hsl: 250, 84%, 54%;
  --sc5-color-bg-hsl: 0, 0%, 100%;
  --sc5-color-contrast-high-hsl: 230, 7%, 23%;
  --sc5-color-contrast-higher-hsl: 230, 13%, 9%;
}

/* component */
html {
  scroll-behavior: smooth;
}