/* This stylesheet is used when there is a collection of pets on screen */

#cardContainer {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.card {
	position: relative;
	display: flex;
	max-width: 18em;
	padding: 1em;
	margin: 0.3em;
	border: 2px solid green;
}

.user {
	font-size: 1em;
	position: absolute;
	bottom: 0;
}

button {
	position: absolute;
	right: 1em;
	bottom: 1em;
	padding: 2em;
}

img {
	width: 150px;
	height: 170px;
	padding-right: 10px;
}

/* Mobile specific */
@media only screen and (max-width: 600px) {
	#cardContainer {
		justify-content: center;
	}
}
