html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	color: #333;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Courier New", monospace;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	line-height: 1.2;
}

/* Links */
a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

/* Form elements */
label {
	display: block;
}

input, select, textarea {
	font-family: inherit;
	font-size: inherit;
	box-sizing: border-box;
}

input:disabled {
	color: #ccc;
}

/* Utility classes */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.text-center {
	text-align: center;
}

.text-mono {
	font-family: "Courier New", monospace;
}
