* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background-color: #e7e4e8;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

h1 {
	max-width: 700px;
	margin: 20px auto;
	letter-spacing: -0.02em;
	font-family: 'Open Sans', sans-serif;
	font-size: 50px;
	font-weight: 800;
	text-align: center;
	color: #401544;
	padding: 0 30px;
	line-height: 1.2em;
}

a,a:link,a:visited {
	color: #54594f;
	text-decoration: none;
}

a:hover,a:active {
	color: #000;
	text-decoration: none;
}


.content {
	display: flex;
	flex-wrap: wrap;
	min-width: inherit;
	margin-bottom: 100px;
	padding: 10px 4vw;
}

@media screen and (max-width: 700px) {
	.content {
		margin: 0 0px;
        padding: 20px 30px;
	}
}

@media screen and (max-width: 480px) {
	.content {
		margin: 0 0 50px;
		padding: 20px 20px;
	}
}

.content .card {
	padding: 2vw;
	width: 33.3333%;
}

@media screen and (max-width: 700px) {
	.content .card {
		width: 50%;
	}
}

@media screen and (max-width: 480px) {
	.content .card {
		width: 100%;
		padding: 4vw 0;
		font-size: 1em;
	}
}

.content .card a.card-content {
	display: block;
	border-radius: 0.25em;
	overflow: hidden;
	transition: box-shadow 0.1s ease-in-out, transform 0.1s ease-in-out;
	height: 100%;
	background-color: #fff;
}

.content .card a.card-content:hover {
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.content .card a.card-content img {
	width: 100%;
	height: 19.55vw;
}

@media screen and (max-width: 700px) {
	.content .card a.card-content img {
		height: 30.1vw;
	}
}

@media screen and (max-width: 480px) {
	.content .card a.card-content img {
		height: 65.375vw;
	}
}

.content .card a.card-content span {
	display: block;
	padding: 0.5em 0.75em;
	text-transform: capitalize;
}