:root{
  --clr-logo: #3c8f38;
  --clr-BG: #FFEFE3;
  --clr-BG2: #C9824E;
  --clr-txt: #2B3A2A;

}


*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{

    background-color: var(--clr-BG);
    color: var(--clr-txt);
    overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1rem;
} 

h2{
  font-family: Kanit, Arial;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  
  h2{
    font-size: 2rem;
  }
  p{
    font-size: 1.5rem;
  }
  h3{
    font-size: 1.5rem;
  }
}
  p{
    font-family: DM sans,Arial;
  }
  a:link { 
    text-decoration: none; 
  } 
  a:visited { 
    text-decoration: none; 
  } 
  a:hover { 
    text-decoration: none; 
  } 
  a:active { 
    text-decoration: none; 
  }
  
  a{
    text-decoration: none;
    color: inherit;
  }

  .dark_bg{
    background-color: var(--clr-BG2);
    background-image: url(/images/ui-assests/bg-elements/g71.svg);
    background-size: cover;
    background-position: center ;
    background-repeat: no-repeat;

}