@charset "UTF-8";

body {
	--maincolor: #ffffff; 
	--linkcolor: #ffffff; 
	--hovercolor: #ffffff;
	margin: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color:#000;
	color: var(--maincolor);
	text-transform: uppercase;
	font-size: 14px;
	font-family: "Lucida Console", Monaco, "Courier New", Courier, monospace;
}
a, a:link, a:visited, a:active, a:hover {
	color:var(--linkcolor);
	text-decoration: none;
	}
a:hover {
	color: var(--hovercolor);
	text-decoration: underline;
}
.c {
	width: 300px;
	text-align: center;
	box-sizing: border-box;
	padding: 8px 0;
}
.i {
	display: flex;
	align-items: center;
	justify-content: center;
gap: 16px;
}
.l {
	width: 230px;
	margin-bottom: 12px;
}
.m {
	margin: 4px 0;
}