:root {
  --primary-colour: #450a0a;
  --text-colour-dark: #000;
  --text-colour-light: #fff;
}

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

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: var(--text-colour-light);

  /* Only works if there is nothing absolutely 
  positioned in relation to body */
  overflow-x: hidden;
}
