/* 
--- 01 TYPOGRAPHY SYSTEM

- FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 9

- Font weights:
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights:
Default: 1
Small: 1.05
Paragraph default: 1.6

--- 02 COLORS
#500000  - Aggie Maroon
#f0e7d8  - Antique White


- Tints: #f5eee4
- Shades:
- Accents: 
- Greys: 
#333

--- 05 SHADOWS

--- 06 BORDER-RADIUS

Default: 9px

--- 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%;
}

body {
  font-family: "Quicksand", sans-serif;
  line-height: 1;
  font-weight: 500;
  color: #333;
}

header,
h1,
h2 {
  font-family: "Jua", sans-serif;
}

/**********************/
/* GENERAL COMPONENTS */
/**********************/

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
}

.secondary-heading {
  font-size: 5.2rem;
  line-height: 1.2;
  margin-bottom: 4.8rem;
  color: #500000;
}

.subheading {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #629fac;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
