/*
Allison Obourn
CSC 337, Spring 2019
Lecture 4

Multi column layout with text surrounding pictures. 
*/

.left {
	float: left;
}

.right {
	float: right;
}

#all {
	display: flex;
	justify-content: space-around;
}

#all div {
	width: 40%;
}