/* 

--- 01 TYPOGRAPHY SYSTEM

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

- Font weights

- Line heights

- Letter spacing


--- 02 COLORS

- Primary: #00E676
- Tints: 
- Shades: 
- Accents:
- Greys:
- Blacks: #111


--- 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%;
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  font-size: 1.5rem;
  background-color: #111;
  color: #fdf2e9;
}

section:not(:first-child) {
  scroll-margin-top: 10rem;
}

footer {
  width: 100%;
  height: 1rem;
  background-color: #00e676;
}

.section + .section {
  margin-top: 15rem;
}

.container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  margin-bottom: 5rem;
}

.heading-secondary {
  font-weight: 500;
  font-size: 4rem;
  border-bottom: 2px solid #00e676;
  padding-bottom: 5px;
}

.grid {
  display: grid;
  gap: 4.8rem;
}

.grid--2-cols {
  grid-template-columns: 1fr 1fr;
}

.grid--3-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.link {
  text-decoration: none;
  color: #fff;
}
