/*---------------------RESET----------------------*/
* {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 100%;
    border: none;
    outline: none;
    font-weight: 300;
    box-sizing: border-box;
     background-size: cover;
     
}

html, body {
    height: 100%;
    background-color: var(--branco-fundo);
}

a {
    text-decoration: none;
    cursor: pointer;
}
:root {
    --verde-escuro: #20702C;
    --verde-claro: rgb(37, 182, 37);
    --branco-fundo: #F7F7F7;
}

::selection {
    color: white;
    background-color: var(--verde-claro);
}

/* width */
::-webkit-scrollbar {
    width: 15px;
   
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
   border-radius: 8px;
   background-color: #F7F7F7;
   margin-top: 5px;
   margin-bottom: 5px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--verde-escuro);
    border-radius: 8px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #248833;
  }
  .titulo{
    color: var(--verde-escuro);
    font-size: 26px;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }