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

header {
	color: orange;
	font-size: 3em;
	font-family: "Trebuchet MS",Arial,sans-serif ;
    text-shadow: 2px 2px 4px #000000;
	text-align: center;
}

p {
	color: green;
	font-size: 1.5em;
	font-family: "Trebuchet MS",Arial,sans-serif ;
    text-shadow: 2px 2px 4px #000000;
	text-align: center;
}

p:hover {
	color: orange;
}

#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: rgb(0,160,100);
	font-family: "Trebuchet MS",Arial,sans-serif ;
    text-shadow: 2px 2px 4px #000000;
}

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