
*
{
    padding: 0px;
    margin: 0px;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
    
}

html
{
    scroll-behavior: smooth; /* ancora com scroll suave */
}

@font-face
{
    font-family: 'Pahat';
    src: url('fontes/PahatScript-GOnpm.otf') format('opentype');
}

a:hover{
    text-decoration: underline; /* aparece linha quando o mause passa em sima de um link */
}

img 
{
    background-color: var(--cor-fundo);
}



body
{
    height: auto;
    padding-bottom: 100px;
    color: var(--cor-fonte);
    background-color: var(--cor-fundo);
}

section
{
    width: 100%;
    
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--cor-fundo);
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #8e24aa;
    border-radius: 5px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #B36DC6;
  }
