
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");

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

html, body {
	height: 100%;
}

body {
	font-size: 1rem;
	line-height: 1.5;
	font-family: "Roboto", sans-serif;
	-webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

input, button, textarea, select {
	font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}

/* https://colorhunt.co/palette/151515301b3f3c415cb4a5a5 */
:root {
	--primary: #222831;
	--secondary: #EEEEEE;
}

html, body {
	background-color: var(--primary);
}

body {
	color: var(--secondary);
}

a {
	color: var(--secondary);
}

ul, ol {
	padding-left: 18px;
}

main {
	height: 100%;
	text-align: center;
	padding: 1em;
	max-width: 240px;
	margin: 0 auto;
}

@media (min-width: 640px) {
	main {
		max-width: none;
	}
}
