/*
Allison Obourn
CSC 337, Fall 2018
Lecture 5

Displays an outer red box with a black box inside it
and a yellow box inside the black box. 
*/

#outer-box {
	background-color: red;
	width: 400px;
	height: 350px;
	padding-top: 50px;
}

#inner-box {
	background-color: yellow;
	border: black solid 50px;
	width: 200px;
	height: 200px;
	margin-left: 50px;
}