/*

--- 01 TYPGRAPHY 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

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

Primary: 

- Tints:

- Shades:

- Accents:

- Greys: #555, #333, #6f6f6f. #edede6; #f9f9f7

--- 05 SHADOWS

box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.07);

--- 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;

  /* USE THIS TO DEBUG IN CASE OF OVERFLOW ON MOBILES
  outline: 1px dashed rgba(255, 0, 0, 0.3); */
}

html {
  font-size: 62.5%;
  overflow-x: clip;
}

body {
  font-family: "Clash Display", sans-serif;
  line-height: 1;
  font-weight: 500;
  color: #555;
  overflow-x: clip;
  /* USE THIS TO DEBUG IN CASE OF OVERFLOW ON MOBILES
  outline: 3px solid red; */
}

/***********************************************/
/* GENERAL REUSABLE COMPONENTS */
/***********************************************/

.section-heading {
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 1.1;
  color: #555;
  text-align: center;
  padding-bottom: 2.4rem;
}

.section-heading-odd {
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 1.1;
  color: #555;
  text-align: center;
  padding: 9.6rem 0;
}

.heading-primary {
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 1.1;
  color: #555;
  text-align: center;
}

.heading-secondary {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.1;
  color: #555;
  text-align: center;
  margin-bottom: 3.2rem;
}

.heading-tertiary {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0px;
  color: #555;
  text-align: center;
  margin-bottom: 3.2rem;
}

.heading-quaternary {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0px;
  color: #555;
  text-align: center;
  padding: 0 1.2rem 2.4rem 1.2rem;
}

.btn:link,
.btn:visited {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: #e1e1d6;
  font-size: 2rem;
  font-weight: 600;
  color: #555;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  width: 25.6rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  transition: all 0.3s;
}

.btn:hover,
.btn:active {
  background-color: #edede6;

  transition: all 0.3s;
}

.btn-outline:link,
.btn-outline:visited {
  font-size: 1.8rem;
  color: #555;
}

.container {
  max-width: 120rem;

  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 4.8rem;
}

.grid--1-col {
  display: grid;
  grid-template-columns: 1fr;
}

.grid--2-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.underline {
  width: 50%;
  size: 2;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.underline-full {
  width: 75%;
  size: 2;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.quote {
  padding-bottom: 2.4rem;
}

.quote-author {
  font-size: 2rem;
  font-weight: 600;
}
