/* Reset CSS */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: var(--font-size-base);
	line-height: 1.5;
}

body {
	font-family: var(--font-family);
	background-color: var(--color-black);
	color: var(--color-white);
	min-height: 100dvh;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	outline: none;
}

input,
textarea {
	font-family: inherit;
	outline: none;
}

ul,
ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}
