@import url('./fonts/open-sans/OpenSans.css');
@import url('./fonts/ibm-plex-mono/IBMPlexMono.css');
@import url('./fonts/fontawesome-pro-5.13.1-web/css/fontawesome.min.css');
@import url('./fonts/fontawesome-pro-5.13.1-web/css/all.min.css');

@media screen and (max-width: 600px) {
	body {
		font-size: 10px;
	}

	.description {
		font-size: 1.5em;
	}
}

* {
	box-sizing: border-box;
}
html, body {
	font-family: 'Open Sans', sans-serif;
}

body {
	background: #0033a0;
	color: #fff;
	display: grid;
	grid-template-areas:
		". header ."
		" . main . "
		"footer footer footer";
	grid-template-columns: minmax(1%, 1fr) 4fr minmax(1%, 1fr);
	grid-template-rows: .33fr auto 2.5em;
	height: 100vh;
	margin: 0;
	padding: 1em;
	text-align: center;
	width: 100%;
}

main {
	grid-area: main;
}

footer {
	grid-area: footer;
	margin: 0 1%;
	text-align: right;
}

footer img {
	border: none;
	height: 2.5em;
	margin-bottom: -.25em;
	margin-left: .5em;
	filter: grayscale(1) contrast(0) brightness(100);
	vertical-align: bottom;
}

h1 {
	font-size: 2.5em;
	font-weight: 300;
	grid-area: header;
	margin: 0;
	opacity: .5;
}

h2 {
	font-size: 3em;
	margin: 0 0 1em 0;
	opacity: .9;
}

.default-page {
        font-family: 'IBM Plex Mono';
        font-size: 6em;
        font-weight: bold;
        opacity: .2;
        line-height: 1em;
        margin: 40px 0 30px 0;
}

.status-code {
        font-family: 'IBM Plex Mono';
        font-size: 14em;
        font-weight: bold;
        opacity: .2;
        margin-bottom: -0.2em;
}

.description {
	display: block;
	opacity: .7;
	margin: 0 auto;
	max-width: 800px;
}

.help-actions {
	margin: 2em 0;
}

.help-actions a {
	display: inline-block;
	border: 1px solid #ffffff55;
	border-radius: .2em;
	color: #fff;
	opacity: .75;
	margin: .5em 0;
	padding: .6em 1em;
	text-decoration: none;
}

.help-actions a:hover {
	background-color: #ffffff22;
}

.help-actions a i[class*="fa-"] {
	font-size: 1.3em;
	margin-right: .5em;
	vertical-align: middle;
}

a.whitelink {
    color: #fff;
}

