/* RESET.CSS - Basic Reset */

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	width: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Space Grotesk', sans-serif;
	background-color: #111111;
	color: #FFFFFF;
	line-height: 1.6;
	font-size: 16px;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

a {
	text-decoration: none;
	color: inherit;
}

ul,
ol {
	list-style: none;
}