html {
	height: 100%;
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 400;
}
body {
	height: 100%;
	margin: 0;
	background-color: #fff;
}


.table {
	display: table;
	height: 100%;
	width: 100%;
}

.table-row {
	display: table-row;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
	padding: 20px;
	text-align: center;
}

.content {
	max-width: 750px;
	margin: auto;
	border: 1px solid #000;
	position: relative;
	text-align: left;
}

.content:before {
	position: absolute;
	top: 1px;
	left: 1px;
	right: 1px;
	background: #000;
	height: 50px;
	content: "";
}

.main	{
	text-align: center;
	padding: 70px 20px 0px;
}

.logo {
	width: 200px;
}

h1 {
	font-size: 20px;
	color: #9a190e;
	line-height: 22px;
	font-weight: 700;
	margin-top: 20px;

}

.footer {
	text-align: center;
	padding: 20px;
}

.footer p {
	font-size: 13px;
	color: #1e1a17;
	line-height: 19px;
	max-width: 350px;
	margin: auto;
}

@media all and (min-width: 480px) {
	.content:after {
		content: "";
		position: absolute;
		top: -90px;
		left: 0;
		width: 100%;
		height: 100%;
		background: url(/web/img/background.png) left bottom no-repeat;
		background-size: contain;
	}

	.main	{
		display: inline-block;
		max-width: 400px;
		text-align: center;
		padding: 80px 40px 40px;
	}
}

@media all and (min-width: 600px) {
	.main	{
		padding: 120px 40px 90px;
	}

	h1 {
		font-size: 28px;
		line-height: 32px;
		margin-top: 40px;
	}

	.content:after {
		top: -120px;
	}

	.logo {
		width: 300px;
	}

	.footer p {
		font-size: 16px;
		line-height: 20px;
		max-width: 450px;
		margin-bottom: 10px;
	}
}

