/* 

----- 01 TYPOGRAPHY SYSTEM -----
- FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font Weights:
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line Heights: 
Default: 1
small: 1.05
Paragraph default: 1.6


----- 02 COLOURS -----

Primary: #1b1b1b;
Tints: 

Shades:
Accents: 
Greys: 


----- 05 SHADOWS -----


----- 06 BORDER-RADIUS -----
Default: 9px
Medium: 11px

----- 07 WHITESPACE -----

- SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

- Letter spacing:
0.75px
*/

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

html {
  /* font-size: 10px; */
  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

body {
  font-family: "Archivo", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #1a1a1a;

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

.container {
  max-width: 120rem;
  margin: 0 auto;
}

.heading-secondary {
  font-weight: 600;
  font-size: 3.6rem;
  color: #fff;
  text-transform: uppercase;
}

.footer-icon-btn {
  display: inline-block;
}

.flex {
  display: flex;
}

.sp-flex {
  gap: 1.3rem;
  max-width: 80%;
  margin: 0 auto;
}

.code {
  font-family: "Courier New", Courier, monospace;
  background-color: #f5f5f5;
  color: #d63384;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 0.95em;
}

