* {
	padding: 0;
	margin: 0;
}

/*
grey: #4A4B4F
violett: #5B627C
*/
body {
	background: url('bg.png');
	background-repeat: repeat;
	color: #4A4B4F;
	font-family: Verdana, sans-serif;
	font-size: 14px;
	line-height: 18px;
}

a, a:visited, a:active {
	color: #4A4B4F;
	text-decoration: none;
}

a:hover {
	color: #5B627C; 
}

.container {
	padding: 20px;
	max-width: 500px;
	margin: 0 auto;
}

.header {
	display: flex;
	justify-content: center;
}

.logo {

}

.logo img {
	max-width: 500px;
	width: 100%;
	display: block;
}

.content {
	padding: 50px 0;
}

.footer {
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	line-height: 22px;
}

.footer-left {
	padding-right: 10px;
}

.footer-right {
	padding-left: 10px;
	text-align: right;
}

.footer strong {
	display: inline-block;
	font-weight: bold;
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: 2px solid #5B627C;
}

p {
	padding: 0;
	margin: 0;
}


@media screen and (max-width: 450px) { 
	.footer {
		flex-direction: column;
	}

	.footer-left {
		padding: 0;
	}

	.footer-right {
		padding: 20px 0 0 0;
		text-align: left;
	}
}
