@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:300,500');


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    font-family: "Roboto Mono", "Liberation Mono", Consolas, monospace;
    color: rgba(255,255,255,.87);
}


body.error404 {
    background-image: url('./bg-404.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

p{
    line-height: 1.2em;
    margin-bottom: 0.8em;
}

.container{
    position: relative;
    margin: 0 auto;
    max-width: 800px;
}

.container.logo{
    display: fixed;
}

#logo {
    width: 150px;
    padding: 5px;
}

a:link, a:hover{
    text-decoration: none;
}

a.btn {
    font-size: 12px;
    text-transform: uppercase;
    background: #f06522;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: inline-block;
    color: #FFF;
    padding: 18px 25px;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 2px;
    position: relative;
}
a.btn:hover {
    background: #fff;
    color: #333;
}


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

.flexbox-container {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;

	align-items: center;
}

.page-404{

    min-height: 100vh;
}