/* Reset Base */
html {
  font-size: 62.5%;  
}

html,
body {
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}

p {
  margin: 0;
}

/* 
Barra de Scroll 
*/

/* Largura da barra */
body::-webkit-scrollbar {
	width: 8px;
}

/* Cor de fundo */
body::-webkit-scrollbar-track {
	background: #FDFDFD;
}

/* Cor do controle deslizante */
body::-webkit-scrollbar-thumb {
	background: #202020;	
	transition: .7s;
}

/* Passa o mouse */
body::-webkit-scrollbar-thumb:hover {
	background: #202020;
}