body {
	background-color: hotpink;
}

.box1 {
	width: 400px;
	padding: 10px;
	border: 10px double cornflowerblue;
	margin: 30px;
	background-color: black;
}

.box2, .box4 {
	width: 400px;
	padding: 30px;
	border: 4px dashed white;
	margin: 50px;
	background-color: darkblue;
}

#box3 {
	width: 400px;
	padding: 5px;
	border: 4px dotted rebeccapurple;
	margin: 50px;
}

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

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

.item1 {
	background-color: darkgreen;
}

.item2 {
	background-color: darkgrey;
}

.item3 {
	background-color: darkkhaki;
}

.item4 {
	background-color: red;
}

p {
	color: white;
}