/* 

Assignment 3
Demo

*/

body {
	background-color: teal;
}

.red { 
	background: gold;
	border-radius: 50px;
}

.blue { 
	background: blue;
	border-radius: 10px;
}


div:hover {
	box-shadow: 2px 2px 30px 8px rgb(110,25,100);
	opacity: 10%;
	transition: 1s;
}


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