h3 {
	font-weight: lighter;
	color: #222;
	padding-top: 12px;
	padding-bottom: 2px;
	font-size: 25px;
}

h4 {
	font-weight: lighter;
	color: #222;
	padding-bottom: 2px;
	font-size: 15px;
}

.card-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
	padding: 1em;
	margin: 1em;
	border-radius: 1em;
	border: 2px solid #222;
	box-shadow: 3px 3px 3px 3px #ccc;
	transition: 0.5s;
	background: white;
}

.card:hover {
	box-shadow: 2px 2px 2px 2px #ccc;
	background: #eee;
}

.bio-photo {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 2em;
}
