/* body,
center,
img,
h1,
h2,
h3,
h4,
h5,

h1 {
	font-family: monospace;
	text-transform: uppercase;
	text-align: center;
	font-size: 2.8em;
	font-weight: 700;
	margin: 0;
}

:global(body.dark-mode) h1 {
	color: #bfc2c7;
	background-color: #2E3437;
	transition: background-color 0.3s;
}

center {
	line-height: 1.5;
	font-size: 20px;
	margin: 0;
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen,
		Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	transition: background-color 0.3s;
	background-color: white;
	color: black;
}

:global(body.dark-mode) center {
	background-color: #2e3437;
	color: #bfc2c7;
}

body {
	line-height: 1.5;
	font-size: 20px;
	margin: 0;
	padding: 0;
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	transition: background-color 0.3s;
}

body.dark-mode {
	transition: background-color 0.3s;
	color: #bfc2c7;
	background-color: #2E3437;
}


img {
	display: flexbox;
	width: 70%;
	line-height: 1.5;
	font-size: 20px;
	margin: 0;
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen,
		Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	transition: background-color 0.3s;
}

:global(body.dark-mode) img {
	transition: background-color 0.3s;
	color: #bfc2c7;
	background-color: #2e3437;
}

p {
	text-align: center;
}

h6 {
	margin: 0 0 0.5em 0;
	font-weight: 400;
	line-height: 1.2;
}

a {
	color: inherit;
}

code {
	font-family: menlo, inconsolata, monospace;
	font-size: calc(1em - 2px);
	color: #555;
	background-color: #f0f0f0;
	padding: 0.2em 0.4em;
	border-radius: 2px;
}

@media (min-width: 400px) {
	body {
		font-size: 16px;
	}
} */