:root {
  /* Color variables */
  /* --primary-color: #1f4e3d; */
  --primary-color: #009f4f;
 /* --secondary-color: #328535;  Accessability test has been don and this match  */
  --secondary-color: #009f4f; /* Accessability test has been don and this match  */

  /* --sec-secondary-color: #1f8638; */
  --sec-secondary-color: #009f4f;

  --init-secondary-color: #009f4f;
  --accent-color: #f7c35f;
  --light-bg-color: #eff2f5;
  --text-white-color: #fff;
  --text-dark-color: #292929;
  --text-black-color: #000

  /* Sizes Variables */
  --size-xxs: 0.5rem;
  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-lg: 1.125rem;
  --size-xl: 1.25rem;
  --size-2xl: 1.5rem;
  --size-3xl: 1.875rem;
  --size-4xl: 2.25rem;
  --size-5xl: 3rem;
  --size-6xl: 3.75rem;
  --size-7xl: 4.5rem;
  --size-8xl: 6rem;
  --size-9xl: 8rem;
  --size-10xl: 10rem;
}

h1 {
  font-size: 2.4rem;
  font-weight: 700;
}

* {
  margin: 0;
  line-height: calc(1em + 0.5rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Handlee", cursive;
  font-family: "Inter", sans-serif;
  color: var(--text-dark-color);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  user-select: none;
}

address {
  font-style: normal;
}

button {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-transform: capitalize;
  font-size: 1.2rem;
  font-weight: normal;
}

a:link {
  text-decoration: none;
}

h2 {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: calc(1em + 0.2rem);
}

@media (min-width: 1024px) {
  h2 {
    font-size: 2rem;
  }
}

p{
  font-size: var(--size-base);
}

/* md */
@media (min-width: 768px) {
 p{
  font-size: 1.1rem;
 }
}

@media (min-width: 1024px) {
 p{
  font-size: var(--size-lg);
 }
}

/* list items */
/* 
ul {
  padding: 0;
}
li {
  list-style: none;
} */
