/* 

--- 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
  Demi-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: #a61e4d (Default font)
  - Tints: 
  #c2255c (Buttons)
  #f36a6a
  #fdf3f3 (Background)
  #c25555 
  #f47979
  #fae6e6
  #fce8e0
  #fdf5f5
  - Shades:
  - Accents:
  - Greys: 
  #495057 (Text)

--- 05 SHADOWS

  box-shadow:



--- 06 BORDER-RADIUS
Default:
Medium:


--- 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 {
  /* Percentage of user0s browser font-size setting */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #a61e4d;
}

/* *********************************** */
/* GENERAL REUSABLE COMPONENTS */
/* *********************************** */

.heading-primary,
.heading-secondary {
  color: #c2255c;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 3.2rem;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Put transition on original "state" */
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #c2255c;
  color: #fff;
}

.btn--full:hover {
  background-color: #e64980;
}

.btn--full:active {
  background-color: #f783ac;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #c2255c;
}

.btn--outline:hover {
  background-color: #fae6e6;
  box-shadow: inset 0 0 0 3px #c2255c;
}

.btn--outline:active {
  background-color: #e64980;
  color: #fff;
}

.text--discount {
  border: 2px dotted #a61e4d;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
}

/* HELPER/SETTING CLASSES */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.center-text {
  text-align: center;
}
