body {
	width: 100%;
	background-color: pink;
}

header {
	color: #fd6c9e ;
	font-size: 3em;
	font-family: "Comic Sans MS",Arial,sans-serif ;
    text-shadow: 2px 2px 4px white;
	text-align: center;
}

header:hover {
	color: white;
text-shadow: 2px 2px 4px #fd6c9e;
	text-align: center;

}
 
p {
	color: #fd6c9e;
	font-size: 1.5em;
	font-family: "Comic Sans MS",Arial,sans-serif ;
    text-shadow: 2px 2px 4px white;
	text-align: center;
}

p:hover {
	color: white;
text-shadow: 2px 2px 4px #fd6c9e;
	text-align: center;

}

#container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items : center;
}

img {
	width: 200px;
	margin: 10px;
	border-radius: 10px;
	transition: all 0.5s ease;
}

figcaption {
	text-align: center;
	color: #fd6c9e;
	font-family: "Comic Sans MS",Arial,sans-serif ;
    text-shadow: 2px 2px 4px white;
}

figcaption:hover {
	color: white;
 text-shadow: 2px 2px 4px #fd6c9e;
}

img:hover {
	margin: 0px;
	width: 220px;
}