/* This stylesheet is used for any instance of a single pet being on screen */

#petDescriptor {
	font-family: "Courier New";
	font-weight: bold;
}

#petSpace {
	font-size: 1.5em;
	border: 5px solid green;
	width: 500px;
	max-width: 100%;
	margin: auto;
	text-align: center;
}

img {
	width: 300px;
	height: auto;
	max-width: 100%;
}

/* Mobile specific */
@media only screen and (max-width: 600px) {
	#petSpace {
		font-size: 1.3em;
		max-width: 90%;
	}
}
