body {
	margin: 0;
	display: flex;
	flex-direction: column;
}

a {
	color: inherit;
	text-decoration: none;
}

header {
	background-color: orange;
	color: white;
	display: flex;
}

header img {
	width: 3%;
	height: 3%;
	margin: 10px
}

header > nav {
	display: flex;
	flex-grow: 1;
	justify-content: space-evenly;
	align-items: center;
}

header > nav > a {
	margin: 0 25px;
	text-transform: uppercase;
}

footer {
	background-color: orange;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	color: white;
}

gallery > img {
	width: 100%;
	height: 100%;
}

content {
	padding-left: 20%;
	padding-right: 20%;
	padding-top: 2rem;
	padding-bottom: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

social > icons {
	display: flex;
	flex-direction: row;
}

social > icons > img {
	width: 4rem;
	height: 4rem;
	margin-right: 1rem;
}

stores, info {
	margin-bottom: 1rem;
}

stores > p, stores > h4, info > p {
	margin: 0;
}

social > a {
	text-decoration: underline;
}

@media only screen and (max-width: 600px) {
	footer {
		flex-direction: column;
		padding: 1rem;
		padding-left: 2rem;
		padding-right: 2rem;
	}

	social > icons > img {
		width: 5rem;
		height: 5rem;
	}
}