html {
	min-height: 100%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

body {
	background-color: black;
	color: #cb4401;
	margin: 20px;
	font-family: 'Raleway', sans-serif;
    font-weight: 400;
    background-image: url('/assets/img/bg.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100%;
}

.container {
	width: 100%;
	max-width: 300px;
	border-radius: 5px;
	border: 2px solid #cb4401;
	box-sizing: border-box;
	background-color: #181818;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.header {
	text-align: center;
	padding: 35px;
	border-radius: 5px;
}

.header img {
	display: inline-block;
	max-width: 225px;
	pointer-events: none;
}

.header h3 {
	margin: 0;
	font-weight: normal;
	text-transform: uppercase;
	font-style: italic;
	font-weight: 500;
}

.main a {
	display: block;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	text-decoration: none;
	color: white;
	background-color: #ff5b00;
	border: 2px solid black;
	border-top: none;
	border-radius: 5px;
	text-transform: uppercase;
	color: black;
	font-weight: bold;
}

.main a:hover {
	background-color: #cb4401;
}

.main .icon {
	font-size: 20pt;
	display: inline-block;
	vertical-align: -5px;
	width: 38px;
	line-height: 0;
}

.main a.announcement {
	padding-top: 8px;
    padding-bottom: 10px;
    color: #ff5b00;
    margin-top: -10px;
    background-color: transparent;
}

.main a:hover {
    background-color: white;
}

.footer {
	float: left;
	height: 0;
}

.footer span {
	text-transform: uppercase;
	font-weight: 600;
	color: #cb4401;
	font-size: 8pt;
}