html{
	scroll-behavior: smooth;
	scrollbar-color: LightBlue white;
	scrollbar-width: thin;
}

.fadeIn {
 	animation: fadeIn 0.5s;
}

@keyframes fadeIn {
   	from { 
   		opacity: 0;
   		transform: scale(0.97);
   	}
   	to   { 
   		opacity: 1;
   		transform: scale(1);
   	}
}