/* Filename: pzland.css */

* {
	margin: 0;
	padding: 0;
	line-height: 1.4;
}

body {
	font: normal 95% Arial, Helvetica, sans-serif;
	/*color: #000000;*/
	color: #282828;
	background-color: #f0f0f0;
}

#wrapper {
	display: flex;
	justify-content: space-around;
}

#content {
	width: 832px;
	padding: 24px 96px 24px;
	background-color: hsl(24 100% 99%);
	box-shadow: 0px 0px 6px rgba(40, 40, 40, 0.25);
}

header:first-of-type a {
	text-decoration: none;
}

a {
	color: hsl(204 100% 42%);
}

#siteheading {
	display: flex;
	flex-flow: row wrap;
	align-items: baseline;
}

#siteheading h1 {
	padding-right: 24px;
}

#siteheading a {
	letter-spacing: 0.02em;
	text-shadow: 0px 0px 1px rgba(40, 40, 40, 0.15);
}

#siteheading i {
	color: hsl(240 0% 42%);
	font-weight: bold;
	letter-spacing: 0.04em;
	text-shadow: 0px 0px 1px rgba(40, 40, 40, 0.15);
}

nav {
	margin-top: 24px;
	margin-bottom: 48px;
}

nav ul {
	list-style: none;
	display: flex;
	flex-flow: row wrap;
	gap: 1.35em 0.9em;
}

nav li a {
	font-size: 1.1em;
	font-weight: bold;
	letter-spacing: 0.02em;
	text-shadow: 0px 0px 1px rgba(40, 40, 40, 0.15);
	padding: 8px 20px;
	/* Grey buttons */
	/*color: hsl(240 0% 42%);*/
	/*border: 3px solid hsl(240 0% 50%);*/
	/* Orange buttons */
	color: hsl(24 100% 50%);
	border: 3px solid hsl(24 100% 54%);
	border-radius: 8px;
	background-color: hsl(24 100% 99%);
	box-shadow: 0px 1px 1px rgba(40, 40, 40, 0.15);
}

article {
	width: 640px;
	border-bottom: 3px solid hsl(240 0% 50%);
	margin-top: 24px;
}

article:first-of-type {
	margin-top: 0;
}

article h2 {
	font-size: 1.7em;
	font-weight: normal;
	letter-spacing: 0.02em;
	color: hsl(204 100% 42%);
	margin-bottom: 8px;
	text-shadow: 0px 0px 1px rgba(40, 40, 40, 0.15);
}

article h2:first-of-type a {
	text-decoration: none;
}

article h2:first-of-type a:visited {
	color: hsl(204 100% 42%);
}

article p {
	font-size: 1.1em;
	margin-bottom: 1em;
}

article a:visited {
	color: #282828;
}

article figure {
	margin-bottom: 1.25em;
}

article figcaption {
	color: hsl(240 0% 42%);
	font-style: italic;
	letter-spacing: 0.02em;
	text-shadow: 0px 0px 1px rgba(40, 40, 40, 0.15);
	text-align: right;
	margin-top: -4px;
}

article video {
	margin-bottom: 1.25em;
}

#content footer {
	margin-top: 24px;
}

#single {
	min-height: 500px;
}

.rightimg {
	float: right;
	margin: 0px 0px 1em 1em;
}

/* Responsive */

@media only screen and (max-width: 1024px) {
	/* 1024=832+96+96 */

	#content {
		width: 100%;
	}
}

@media only screen and (max-width: 832px) {
	/* 832=640+96+96 */

	#content {
		padding-right: 24px;
	}
}

@media only screen and (max-width: 760px) {
	/* 760=640+96+24 */

	#content {
		padding-left: 48px;
	}
}

@media only screen and (max-width: 712px) {
	/* 712=640+48+24 */

	#content {
		padding-left: 24px;
	}
}

@media only screen and (max-width: 688px) {
	/* 688=640+24+24 */

	article {
		width: auto;
	}

	article img {
		max-width: 100%;
	}

	article video {
		max-width: 100%;
	}

	.rightimg {
		float: none;
		text-align: center;
		margin: 0px auto 1em;
	}
}

@media only screen and (max-width: 486px) {
	#siteheading {
		display: block;
	}

	#siteheading h1 {
		padding-right: 0px;
	}
}

@media only screen and (max-width: 430px) {
	/* we are a phone now */

	* {
		line-height: 1.35;
	}

	body {
		font-size: 87%;
	}

	#content {
		padding-top: 16px;
	}

	nav {
		margin-top: 16px;
		margin-bottom: 32px;
	}

	nav ul {
		gap: 1em 0.4em;
	}

	nav li a {
		padding: 2px 5px;
	}
}


/* EOF */
