/* ---------- start default---------- */
*{
	margin: 0;
	padding: 0;
}

a {
	color: #577dff;
	text-decoration: none;
}

html, body {
	width: 100%;
	background-color: #fff;
	font-size: 16px;
	font-family: Roboto, sans-serif;
}

h2 {
	text-align: center;
}
/* ---------- end default---------- */


/* ---------- start header ---------- */
header{
	text-align: center;
	margin-bottom: 10px;
	padding: 10px 0;
	background-color: #efefef;
}

header h1 a{
	font-weight: bold;
	width: 100%;
}
/* ---------- end header ---------- */


/* ---------- start main ---------- */
main {
	background-color: rgba(255, 147, 0, 0.49);
	height: 500px;
	width: 1440px;
	margin: 0 auto;
	position: relative; /* ----------объявление main как родителя. Все блоки внутри будут выравниваться относительно родителя ---------- */
}

.first, .second, .third {
	position: absolute;
}

.first{
	top: 7%;
	left: 370px;
	z-index: 3;
}

.second{
	right: 100px;
	bottom: 20px;
	z-index: 1;
}

.third{
	top: 20px;
	left: 50px;
	z-index: 2;
}

/* ---------- end main ---------- */


/* ---------- start footer ---------- */
footer {
	text-align: center;
	margin-top: 20px;
	width: 100%;
	padding: 10px 0;
	color: #000;
	background-color: #f8ffc2;
	font-size: 18px;
}
/* ---------- end footer ---------- */