:root {
  --color-primary: #e20177;
  --color-secondary: #018bc2;
  --color-accent: #54b848;
  --color-bg: #171717;
  --color-text: #ffffff;
  --font-family: "Montserrat", sans-serif;
  --hotspot-swoop: #e91e63;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
}
