.container {
	width: 1000px;
	height: 600px;
	background-color: #EFBDEB;
	margin: 40px auto 40px auto;
	border-radius: 40px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap-reverse;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-content: center;
}

.box {
	width: 45%;
	border: solid 5px #6461A0;
	height: 100px;
	border-radius: 20px;
	text-align: center;
	padding: 40px;
	box-sizing: border-box;
}

.item1 {
	background-color: #B68CB8;
}

.item2 {
	background-color: #81D2C7;
}

.item3 {
	background-color: #9CF6F6;
}

.item4 {
	background-color: #14342B;
	color: #ffffff;
}