.container {
	width: 1000px;
	height: 600px;
	background-color: #273339;
	margin: 40px auto 40px auto;
	border-radius: 40px;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: center;
	align-content: stretch;
}

.box {
	width: 45%;
	border: 5px dotted white;
	height: 100px;
	border-radius: 20px;
	text-align: center;
	padding: 40px;
	box-sizing: border-box;
	color: white;
}

.item1 {
	background-color: #ba0314;
}

.item2 {
	background-color: #090c63;
}

.item3 {
	background-color: #5b2daf;
}

.item4 {
	background-color: #87f61b;
}