body {
	background: rgb(80,80,90);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: serif;
	font-size: 1.5rem;
	text-align: center;
}

.header {
	text-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

.grid {
	columns: 5 200px;
	column-gap: 2.5rem;
	width: 90%;
	margin: 0 auto;
}
.grid figure {
	width: 150px;
	margin: 0 1.5rem 1.5rem 0;
	display: inline-block;
	width: 100%;
	padding: 5px;
	transition: all 0.25s ease-in-out;
}
.grid figure:hover img.thmb {
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
	transform: scale(1.05);
}

.grid figure img {
	background: transparent;
	border-radius: 2px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
	transform: perspective(600px) translate3d(0, 0, 0);
	transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
	width: 100%;
}

.grid figure figcaption {
	background: white;
	color: #222;
	font-size: 1rem;
	margin: .5rem 0;
	padding: .5rem;
}

.pic figure img {
	max-width: 100%;
	height: auto; 
	border-radius: 2px;
	box-shadow: 2rem 2rem 2rem rgba(0, 0, 0, 0.5), 0 0 2rem rgba(0, 0, 0, 0.5);
}

.card p,
.pic figure figcaption {
	background: white;
	color: #222;
	margin: .5rem 0;
	padding: .5rem;
}

.info {
	background: white;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
	color: #222;
	width: 60%;
	max-width: 48rem;
	padding: 1.5rem;
	text-align: justify;
}

.info img {
	float: right;
	width: 25%;
	height: auto;
	margin-left: 2rem;
}

li {
	display: inline-block;
	list-style-image: none;
	margin: 0.5rem 0;
}