/*
--- 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
medium: 1.2
large 1.8
Paragraph Default: 1.6

- letter spacing 
  -0.75
  0.75

  
  -- 02 COLORS
  
  - Primary : 
      #CD00CB
      #810795
      #FFEDE1
  - Tints: 
  - Shades:
  - Accents: #0200FF
  - Greys:
  --- 05 SHADOWS
  
    box-shadow: 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: "Inter", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #e6d5cb;
  /* overflow-x: hidden; */
  background-color: #0d010f;
  cursor: default;
}

/* **************************** */
/* GENERAL COMPONENTS */
/* **************************** */

.container {
  max-width: 205rem;
  padding: 6.4rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  row-gap: 6.4rem;
  column-gap: 9.6rem;
}

.grid-2-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 9.6rem;
  column-gap: 6.4rem;
}
.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* row-gap: 6.4rem; */
}
.grid-4-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* row-gap: 6.4rem; */
}

.heading-primary {
  font-weight: 700;
  font-size: 7.4rem;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-weight: 500;
  font-size: 6.2rem;
  margin-bottom: 3.2rem;
}

.heading-tertiary {
  font-weight: 700;
  font-size: 5.2rem;
  margin-bottom: 3.2rem;
  color: #810795;
}

.prjct-dscrptn {
  font-size: 3.6rem;
  padding-left: 4.8rem;
}

.center-text {
  text-align: center;
}

.link:link,
.link:visited {
  text-decoration: none;
  color: #ffede1;
}

.link:hover,
.link:active {
  text-decoration: none;
  color: #ffede1;
}

.footer {
  padding: 5rem 2rem 5rem 2rem;
  background-color: #82079552;
}
