
body{
	margin: 0px;
}

h1{
	font-family: 'Shadows Into Light', cursive;
	font-size: 3em;
	border-bottom: 2px solid pink;
	border-right: 2px solid pink;
	width: 450px;
	text-align: center;
	box-shadow: 4px 4px 5px #888888;
	
}



.container{
	clear:both;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.container {
    position: relative;
 }


img{
	width: 400px;
	height: 300px;
	margin: 10px;
	transition: 1s all;
}

img:hover{
	transform: scale(1.1);
	/*opacity: 0.2;*/
}
