:root {
    --verde-publi: rgb(108, 172, 70);
    --morado-publi:rgb(158, 128, 200);

}

::-webkit-scrollbar {
    width: 7px;               /* width of the entire scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background: white;        /* color of the tracking area */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: var(--verde-publi);    /* color of the scroll thumb */
    border-radius: 10px;       /* roundness of the scroll thumb */
   
  }
* {
    box-sizing: border-box;
    margin: 0;
    padding:0;


}


body {
    font-family: 'Poppins', sans-serif!important;
}
.navbar {
    color: black;
    font-weight: 600;
}

.nav-link{
    color: var(--verde-publi)!important;
}

a{
    color:black!important;
}