@font-face {
  font-family: "Young serif";
  src: url("./assets/fonts/young-serif/YoungSerif-Regular.ttf") format('truetype'); 
}

@font-face {
  font-family: Outfit;
  src: url("./assets/fonts/outfit/Outfit-VariableFont_wght.ttf") format('truetype'); 
  font-weight: 400, 600, 700;
}

:root {
    --white: hsl(0, 0%, 100%);
    --stone_100: hsl(30, 54%, 90%);
    --stone_150: hsl(30, 18%, 87%);
    --stone_600: hsl(30, 10%, 34%);
    --stone_900: hsl(24, 5%, 18%);
    --brown_800: hsl(14, 45%, 36%);
    --rose_800: hsl(332, 51%, 32%);
    --rose_50: hsl(330, 100%, 98%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

img {
  width: 100%; 
  height: 100%; 
}

h1{
  font-family: "Young Serif" ;
  font-weight: 400;
  font-size: 2.25rem;
  padding-left: 1em;
  padding-right: 1em; 
  line-height: 1;
  margin-bottom: 0.8em; 
  margin-top: 1em; 
}

h2 {
  font-family: "Outfit";
  font-size: 1.25rem;
  color: var(--rose_800);
  font-weight: 600;
  margin-bottom: 1em;

}

section:nth-child(2) {
  padding-left: 1.9em;
  padding-right: 1.9em;
  font-family: Outfit; 
  color: var(--stone_600);
  line-height: 1.6;
  margin-bottom: 1em; 
}

section:nth-child(3)  {
  background-color: var(--rose_50);
  padding-left: 3.5em;
  padding-right: 4.2em;
  padding-top: 2em; 
}



