/* 

  ---------------------Details Structures----------------------
  
  01-> Typography 
    - font-size 
         # FONT SIZE SYSTEM (px)
           10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 
           62 / 74 / 86 / 98

    - font-weight 
        Default -  400
    
    - line height 
        Default - 1
    

  02-> Color 
    - Primary - #f0504a
    - Tins - #fcdcdb
    - Shaded #f3736e
    - Accents #f3736e
    - Gray - #555 #333

  03-> Images 

  04-> Icons

  05-> Shadows

  06-> Boder radius
  
  07-> White Space
       # SPACING SYSTEM (px)
         2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

   -----------------------------------------------------
*/

/* ------------- Global Element --------------------- */

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* Default Behaviour */
body {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #555;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  margin-bottom: 9.2rem;
}

.grid {
  display: grid;
  gap: 6.4rem;
}

.grid-start {
  align-items: start;
}

.grid:not(:last-child) {
  margin-bottom: 9.8rem;
}

.grid-2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5-cols {
  grid-template-columns: repeat(5, 1fr);
}

/* H1, H2, H3 */
.primery-heading {
  color: #333;
  font-size: 5.2rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 3.2rem;
}

.secondery-heading {
  font-size: 4.4rem;
  columns: #333;
}

.tertiery-heading {
  font-size: 3.6rem;
  margin-bottom: 2.4rem;
}

/* :focus {
  outline: none;
  /* outline-offset: 3px dotted #cf711c; 
  box-shadow: 0 0 0 0.8rem rgba(207, 113, 31, 0.407);
} */

/* Botton */
.btn:link,
.btn:visited {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  text-decoration: none;
  transition: background-color 0.3s;
  border-radius: 0.9rem;
}

.btn-main:link,
.btn-main:visited {
  background-color: #f0504a;
  color: #fff;
}

.btn-main:hover,
.btn-main:active {
  background-color: #f3736e;
  color: #fff;
}

.btn-out:link,
.btn-out:visited {
  background-color: #fff;
  color: #555;
}

.btn-out:hover,
.btn-out:active {
  background-color: #fcdcdb;
  /* Trick */
  box-shadow: inset 0 0 5px #fff;
}

.btn-margin {
  margin-right: 3.3rem;
}

strong {
  font-weight: 500;
}

.margin-top {
  margin-top: 6.4rem;
}

.link:link,
.link:visited {
  text-decoration: none;
  font-size: 1.8rem;
  color: #f0504a;
  border-bottom: 1px solid currentColor;
}

.link:hover,
.link:active {
  color: #f3736e;
  border-bottom: 1px solid transparent;
}

.align {
  text-align: start;
}

/* ---------------------------------------------- */
