@charset "UTF-8";
/* CSS Document */

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Lato', sans-serif;
	line-height: 1.4;
	background-color: rgba(60, 60, 60, 1);
	color: white;
}



/* Header logo */
.header-container {
	display: flex;
	height: 50px;
	width: 100%;
	justify-content: flex-start;
	align-content: center;
}
.header-container img {
	height: 50px;
	width: 50px;
	padding: 10px;
	cursor: pointer;
}
.header-container p {
	font-size: 18px;
	font-weight: 100;
	align-self: center;
	color: white;
}



.gallery {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}



/* Listing */
.listing-container {
	padding-top: 5px;
	padding-left: 3px;
	padding-right: 3px;
	padding-bottom: 15px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	max-width: 300px;
}

.listing-photo img {
	width: 100%;
	objectj-fit: contain;
}
.listing-title {
	font-size: 15px;
	font-weight: 100;
	padding-left: 5px;
}


@media only screen and (min-width : 200px) and (max-width : 599px) {

	.listing-container {
		max-width: 599px;
	}

}

