body {
	margin: 0px;
}

h1 {
	margin-top: 0px;
	margin-left: 10px;
	width: 250px;
	border-right: 2px solid red;
	border-bottom: 2px solid red;
	border-left: 2px solid red;
	box-shadow: 4px 4px 5px gray;
}

.container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

img {
	width: 350px;
	height: 300px;
	margin: 10px;
	transition: all 2s;
}

img:hover {
	transform: scale(1.1);
}

