@charset "UTF-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
	
}
Section {background-color: aquamarine}

.column{
	width: 300px;
	height:200px;
	float: left;
		margin:0 5px;
			background-color:#DF9698
}
#flexbook {
	width: 1200px;
	height: 300px;
		display: flex;
	justify-content: space-evenly;
	background-color:wheat;
	Margin:auto;
}

.flexcolumn{
	
	width: 350px;
	height: 200px;
	background-color: #2C468E;
	margin-top:20px;
}

.flexcolumn1{
	
	width: 250px;
	height: 200px;
	background-color: #6966BF;
	margin-top:20px;
}