/* NRK colour palette ------------------------------------------------------ */
:root {
  --core-blue-900: #0a2343;
  --core-blue-600: #1767ce;
  --alt-blue-100: #d4eefc;
  --red-100: #ffddd8;
  --red-300: #ff9f8f;
  --warm-mint-800: #064e42;
  --cool-pink-200: #efb4ed;
  --warm-pink-600: #de0072;
  --cool-orange-200: #fdd791;

  --bg: var(--core-blue-900);
  --accent: var(--core-blue-600);
  --text: #ffffff;
}

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

html,
body {
  height: 100%;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial,
    sans-serif;
  background: #000;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

button {
  font-family: inherit;
  cursor: pointer;
}
