/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (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
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #2D6A4F
- Tints:
#eaf0ed
#c3fae8
#38d9a9

- Shades: 
#087f5b
#081C15

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#4F4F4F (lightest grey allowed on #c3fae8)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 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: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}
.fixed-position {
  overflow: hidden;
}
::-webkit-scrollbar {
  width: 1rem;
  background-color: #e8e8e8;
}
::-webkit-scrollbar-thumb {
  background: #2d6a4f;
  border-radius: 11px;
}
::-webkit-scrollbar-thumb:hover {
  background: #38d9a9;
}
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/**************************/
/* GENeRAL REUSABLE COMPONENTS */
/**************************/
.headerSecondary {
  padding-bottom: 0.8rem;
  font-size: 4.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  background-image: linear-gradient(#38d9a9, #2d6a4f);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
