body {
	background: dimgrey url(/images/back.jpg) no-repeat center center;
	background-attachment: fixed;
	background-size: cover;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover, a:visited {
	color: inherit;
}
.block {
	width: 960px;
	margin: 0 auto;
}
.container {
	margin: 0 40px;
	overflow: hidden;
}
#header {
	color: orchid;
	background-color: plum;
	padding-top: 35px;
}
#header .container {
	background-color: lightgray;
	padding: 20px 40px;
}
#header img {
	width: 150px;
	float: left;
}
#header h1 {
	font-size: 3.4em;
	font-family: 'Finger Paint';
	margin-left: 25px;
	float: left;
}
#content {
	background-color: lightblue;
}
#content .container {
	background-color: linen;
	padding: 10px 20px;
}
.brand {
	color: cadetblue;
	text-align: center;
	width: 380px;
	margin: 20px;
	float: left;
	overflow: hidden;
}
.brand img:not(.logo) {
	background-color: lightblue;
	width: 140%;
	margin-left: -20%;
}
.brand img.logo {
	height: 40px;
	margin-bottom: 10px;
}
.brand a:hover img:not(.logo) {
	background-color: bisque;
}
#footer {
	color: darkslategray;
	background-color: darkseagreen;
}
#footer .container {
	background-color: khaki;
}
#footer .container .widgets {
	overflow: hidden;
}
#footer .widget {
	width: 200px;
	padding: 20px 40px;
	float: left;
}
#footer .widget:first-child {
	width: 240px;
}
#footer .widget ul {
	margin-top: 0;
	padding-left: 15px;
	display: inline-block;
}
#footer .widget img.picto {
	width: 12px;
	height: auto;
	padding-left: 1px;
}
#footer .widget img.logo {
	max-width: 150px;
	margin-top: -10px;
}
#copyright {
	background-color: darkseagreen;
	text-align: center;
	font-size: 12px;
	width: 100%;
	line-height: 35px;
}

@media screen and (max-width: 1024px) {
	body {
		min-width: 480px;
	}
	.block {
		width: 540px;
	}
	#header .container {
		padding-bottom: 0;
	}
	#header img {
		width: 90px;
	}
	#header h1 {
		font-size: 3em;
	}
	.brand img:not(.logo) {
		width: 100%;
		margin-left: 0;
	}
	#footer .widget {
		width: 380px;
		padding: 0 40px 10px;
	}
	#footer .widget:first-child {
		width: 380px;
		padding-top: 10px;
	}
}