/*
Allison Obourn
CSC 337, Spring 2019
Lecture 4

Two column layout with space around the columns and edges.
*/

#main {
	border: black 3px solid;
	display: flex;
	justify-content: space-around;
}

p {
	border: red 2px dashed;
	width: 300px;
}

#col2 {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}