html {
	box-sizing: border-box;
	color: black;
	height: auto;
	scroll-behavior: smooth;
	/* Smooth scrolling */
}

*,
*::before,
*::after {
	box-sizing: inherit;
	padding: 0;
	margin: 0;
}


p {
	font-size: 12px;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	margin: 0;
}

/* Your main content should grow to fill space */
main {
	flex: 1;
	/* This pushes footer down */
}
