/* 

--- 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
semibold: 600
bold: 700

- Line heights
default: 1
1.2
1.4
1.6

- Letter spacing

0.5px

--- COLORS

- Primary: #8912BC
- Tints: #f3e7f8 #e7d0f2
- Shades: #600d84
- Greys: #555 #333 #aaa

--- SHADOWS

box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.4)
box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15)
box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2)

--- BORDER-RADIUS

border-radius: 0.625rem

--- WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(95, 13, 130, 0.445);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  color: #555;
  line-height: 1;
  font-weight: 400;
  overflow-x: hidden;
}

.header-main {
  font-size: 3.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.header-second {
  font-size: 2.75rem;
  color: #333;
  text-transform: uppercase;
  font-weight: 600;
}

.header-third {
  font-size: 1.5rem;
  color: #600d84;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background-color: #8912bc;
  padding: 1rem 2rem;
  border-radius: 0.625rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:active {
  background-color: #600d84;
}

.container {
  max-width: 75rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  row-gap: 6rem;
  column-gap: 4rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.center-text {
  text-align: center;
}

.margin--bottom {
  margin-bottom: 4rem;
}

.margin--bottom-sm {
  margin-bottom: 2rem;
}
