/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights


- Line heights


- Letter spacing


--- 02 COLORS

- Primary: 
- Tints:
- Shades: 
- Accents:
- Greys

--- 05 SHADOWS

--- 06 BORDER-RADIUS

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

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

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

body {
  font-family: "IBM Plex Sans", sans-serif;
  color: #f1f1f1;

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

section {
  height: 100vh;
  min-height: 108rem;
  position: relative;
}

.under-construction {
  position: fixed;
  opacity: 50%;
  top: 50%;
  left: 50%;
  font-size: 5rem;
  transform: translate(-50%, -50%);
  z-index: 100;
}
/**************************/
/* GENRAL REUSABLE COMPONENTS */
