/* 

Assignment 3
Demo

*/

body {
	font-size: 40px;
}

.demo-circle { 
	background: blue;
	border-radius: 50%;
}

.demo-square {
	background: red;
	border: inset 10px yellow;
}

.demo-lozenge {
	background: rgb(30,30,30);
	border-top-left-radius: 50%;
	border-bottom-right-radius: 50%;
	box-shadow: magenta 20px 20px;
}