.box{
	border: 1px solid black;
	width: 100px;
	height: 50px;
	font-size: 25px;
	text-align: center;
	margin: 10px 0px;
}

.box1{
	background-color: blueviolet;
}

.box2{
	background-color: greenyellow;
	position: relative;
	left: 100px;
}

.box3{
	background-color: paleturquoise;
	position: relative;
	left: 200px;
}

.box4{
	background-color: orangered;
	position: relative;
	left: 100px;
}

.box5{
	background-color: blanchedalmond;
}
img{
	float: left;
	margin-right: 15px;
}
p::after{
	content: '';
	clear: both;
	display: block;
}