* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

:root {
  --fonte: rgb(0, 0, 0);
  --fonte-clara: #e5e5e5;
  --fundo: rgb(36, 34, 34);
  --fundo-claro: #f8f9fa;
  --detalhes: #edcd1f;
  --hover: #f5e27d;
  --borda: rgba(237, 205, 31, 0.3);
  --width_aside: 14em;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--detalhes);
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
