.flexbox-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.flexbox-item {
	max-width: 80ch;
	font: 16px monospace,monospace;
}
body {
	background: #000;
	color: #fff;
}
a {
	color: #EDBD64;
}
/* Make our font scale on smaller screens. */
 @media(max-width:1000px) { 
	.flexbox-item{
		font-size: 1.94vw;
	}
}
@media(prefers-color-scheme: light) {
	body {
		background: #fff;
		color: #000;
	}
	a {
		color: #0000FF;
	}
}
