@import url("https://fonts.googleapis.com/css2?family=Young+Serif&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --White: hsl(0, 0%, 100%);
  --Stone100: hsl(30, 54%, 90%);
  --Stone150: hsl(30, 18%, 87%);
  --Stone600: hsl(30, 10%, 34%);
  --Stone900: hsl(24, 5%, 18%);
  --Brown800: hsl(14, 45%, 36%);
  --Rose800: hsl(332, 51%, 32%);
  --rose50: hsl(330, 100%, 98%);
  --ff-young-serif: "Young Serif", serif;
  --ff-outfit: "Outfit", serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  /* border: 1px solid red; */
  max-width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-1 img {
  max-width: 100%;
}
/* section-2 */
.section-2 h1 {
  font-family: var(--ff-young-serif);
  font-weight: 700;
  font-size: 2rem;
  padding: 1rem 0;
  line-height: 2rem;

}
.section-2 p{
    font-size: 16px;
    font-family: var(--ff-outfit);
    font-weight: 400;
    color: var(--Stone600);
    padding-bottom: 2rem;
    line-height: 1.3rem;
}
.section-2-div{
    background-color: var(--rose50);
    padding: 30px;
    border-radius: 10px;
}
.section-2-div h3{
    font-family: var(--ff-outfit);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--Rose800);
    padding-bottom: 1rem;
}
.section-2-div ul li::marker{
    color: var(--Rose800);

}
.section-2-div ul{
    padding: 0 26px;
}
.section-2-div-span{
    color: var(--Stone900);
    font-family: var(--ff-outfit);
    font-weight: 700;
    line-height: 2rem;
}
.section-3-div h2{
  color: var(--Brown800);
  padding-left: 1rem;
  font-family: var(--ff-young-serif);
  font-size: 2rem;
  font-weight: 400;
  padding-bottom: 1.5rem;
}
.section-3-div ul {
  padding: 0 34px;
  color: var(--Stone600);
  font-family: var(--ff-outfit);
  line-height: 1.8rem;
  padding-bottom: 2rem;
}
.section-3-div ul li::marker{
  color: var(--Rose800); 
}
.section-3{
  border-bottom: 1px solid var(--Stone100);
  padding-bottom: 16px;
}


.section-4-div h2{
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  color: var(--Brown800);
  font-family: var(--ff-young-serif);
  font-size: 2rem;
  font-weight: 400; 
  padding-left: 0.9rem;
}
.section-4{
  border-bottom: 1px solid var(--Stone100);
  padding-bottom: 16px;
}
.section-4-div span {
  color: var(--Stone900);
    font-weight: 700;
    line-height: 2rem;
    
    
}
.section-4-div ol li::marker{
  color: var(--Brown800);
  font-size: medium;
  font-weight: bold;
}
.section-4-div li {
  padding-left: 0.5rem;
}
.section-4-div ol {
  padding-left: 1.9rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #000;
}

.section-5-div h2{
  color: var(--Brown800);
  font-family: var(--ff-outfit);
  font-weight: 700; 
  font-size: 2rem;
  padding-left: 1.5rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.section-5-div p{
  padding-left: 1.5rem;
  line-height: 1.3rem;
  padding-bottom: 1.5rem;
  color: var(--Rose800);
  font-family: var(--ff-outfit);
}
.section-5-div td{
  padding-left: 4rem;
  padding-bottom: 2rem;
}
/* .section-5-div strong{
  color: var(--Rose800);
  font-size: o.8rem;
  font-weight: 800;
  border-spacing: 1rem; */

table{
  /* border: 1px solid red; */
  width: 100%;
}
tbody{
  font-family: var(--ff-outfit);
}
tbody tr:not(:last-child) td{
  border-bottom: 2px solid var(--Stone100)
}
table td{
  padding: 20px 30px;
}
td strong{
  font-weight: 700;
  color: var(--Brown800);
}

 
 
  
  

@media(min-width:768px) {
main{
  max-width: 70%;
  background-color: var(--White);
  border: 15px solid white;
  margin: 30px 0;
  border-radius: 10px;
}
body {
  margin: auto;
  width: 50%;
  background-color: var(--Stone100);
}
.section-1{
  max-width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
.container{
  max-width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
.section-1 img{
  border-radius: 10px;
}

}
 


  

  