/* Warren James - shared error page stylesheet
   Used by static error pages in /errors/ (blocked, 503, 400, 500, 502, 504, 429).
   Self-contained so it works before the CFML framework runs. */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: #fff;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
}
.container { max-width: 520px; width: 100%; }
.logo {
	font-size: 28px;
	font-weight: 900;
	letter-spacing: 1px;
	color: #000;
	margin-bottom: 32px;
}
.logo span { font-weight: 300; }
.code {
	font-size: 72px;
	font-weight: 900;
	color: #000;
	line-height: 1;
	margin-bottom: 16px;
}
h1 {
	font-size: 22px;
	font-weight: 700;
	color: #000;
	margin-bottom: 12px;
}
p {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
}
.rule {
	width: 60px;
	height: 3px;
	background: #000;
	margin: 28px auto;
}
a {
	display: inline-block;
	margin-top: 8px;
	padding: 12px 28px;
	background: #000;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
}
a:hover { background: #333; }
