body {
	font-family: 'Arial', sans-serif;
	margin: 0;
}
header {
	text-align: right;
	padding: 2rem; 
	background: #2B9967;
	background-image: url('green.png');
	color: white;
	min-height: 60vh;
	position: relative;
}
header.post {
	min-height: 40vh;
}
header h1 {
	font-size: 12vh;
	margin: 0px;
	padding-right: 2rem;
}
header h2 {
	font-size: 2.5rem;
	margin: 0px;
	font-weight: normal;
	padding-right: 2rem;
	padding-bottom: 4rem;
}
header img {
	width: auto;
	height: 20vw; 
	position: absolute;
	bottom: 2rem;
	left: 2rem;
}
header.post img {
	height: 10vw;
}
.split {
	display: grid;
	grid-template-columns: 50% 50%;
}


.text {
	padding: 2rem;
	font-size: 1.5rem;
}
.text h1 {
	font-size: 3rem;
}

blockquote {
	background: #f9f9f9;
	border-left: 10px solid #ccc;
	margin: 1.5em 10px;
	padding: 0.5em 10px;
}

footer {
	text-align: center;
	padding-left: 20%;
	padding-right: 20%;
}
.posts {
	padding-left: 20%;
	padding-right: 20%;
}

#contact {
	word-break: break-all;
}

#photos {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
}
#photos img {
	max-width: calc(30vw + 1rem);
	height: calc(30vw + 1rem);
	object-fit: cover;
}
#photos .small {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}
#photos .small img {
	max-width: calc(30vw/2);
	height: calc(30vw/2);
	object-fit: cover;
	align-self: center;
	justify-self: center;
}



a, a:link {
	font-family: monospace;
	color: black;
	text-decoration: underline;
	font-style: italic;
}
a:hover {
	font-family: monospace;
	color:black;
	text-decoration: underline;
	font-weight: bold;
}
a:active {
	font-family: monospace;
	color: black;
	font-weight: bold;
}


@media screen and (max-width: 900px) {
	header h1 {
		font-size: 3.5rem;
		padding-right: 1rem;
	}
	header h2 {
		padding-right: 1rem;
	}
	header img {
		display: none;
	}
	.split {
		display: block;
	}
	#photos {
		display: block;
	}
	#photos img {
		width: calc(90vw - 2rem);
		max-width: none;
		max-height:  40vh;
		height: auto;
		object-fit: cover;
		margin-bottom: 1rem;
		margin-top: 1rem;
	}
	#photos .small {
		width: calc(90vw - 2rem);
	}
	#photos .small img {
		max-width: 30vw;
		height: 30vw;

	}

}



article img {
	width: 100%;
}
article pre {
	max-width: 100%;
	overflow: scroll;
}


/* Quest Link Button */
.center {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction:column;
	color: black;
}
.float {
	position: fixed;
}
.top {
	top: 10px;
}
.right {
	right: 10px;
}
.left {
	left: 10px;
}
#linky {
	z-index: 99;
}
#linky img {
	width: 20px;
}
#hidden {
	display: none;
}
.popup {
	z-index: 99;
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: white;
}
.popup h1 {
	font-size: 3rem;
}
.popup input {
	font-size: 3rem;
}
.flex {
	display: flex;
}
