@charset "utf-8";
/* CSS Document */

body{}

.container{
	width:1000px;
	margin:0 auto;
}

header{
	background-color: #56AF92;
	padding:20px;
}
header .container{
	display:flex;
	justify-content:space-between;
}
header a{
	color:#FFF;
	text-decoration: none;
}
header nav a{
	margin:0 10px;
}

main{}

#banner{
	background-image: url('images/banner1.jpg');
	height: 450px;
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
#banner h1{
	color:#FFF;
	font-size:24px;
}
#news .container{
	display: flex;
	flex-wrap:wrap;
	padding:20px 0;
}
#news .item{
	width:33.33%;
	padding:20px 10px;
}
#news .item h1{
	font-size:20px;
}
#news .item img{
	margin:10px 0;
}
#news .item p{
	color:#999;
	line-height: 150%;
}

footer{
	background-color: #333;
	color:#CCC;
	text-align: center;
	padding:20px 0;
}




















