* {
	box-sizing: border-box;
}
.logo{
	max-height: auto;
	max-width: 70%;
	border: none;
}
hr.solid {
	border-top: 3px solid #FFFFFF;
}
/* Navigation */
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	font-family: monospace;
}
ul li a {
	display: flex;
	color: #FFFFFF;
	padding: 14px 16px;
	text-decoration: none;
	background-color: #3a3a3c;
}
ul li a:hover {
	background-color: #FFFFFF;
	color: #3a3a3c;
}
ul li a.active {
	background-color: #c4d600;
	color: #FFFFFF;
}
ul li {
	float: left;
	border: 1px solid white;
}
/* body */
body{
	background-color: #3a3a3c;
	color: #FFFFFF;
	overflow: auto;
	text-align: center;
	font-family: monospace;
}
h1{
	font-size: 10rem;
	font-family: Notable, monospace;
	text-decoration-line:underline;
	text-align: center;
	letter-spacing: -5px;
	margin: 15px;
}
h2{
	text-align: center;
	font-size: 30px;
	margin: auto;
	display: flex;
	justify-content: center;
	color: #FFFFFF;
}
p{
	font-size:20px;
	text-align: left;
	margin: auto;
	max-width: 80%;
}
/* code form container */
.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
/* div inside code form */
.container div {
	margin: 10px;
	padding: 10px;
}
/* column in form */
#form-column{
display: flex;
flex-direction: column;
align-items: center;
max-width: 33.33rem;
}
/* text form input */
input[type=text]{
	border: none;
	border-bottom: 3px solid #c4d600;
	background-color: transparent;
	font-size: 20px;
	color: #FFFFFF;
	width:50%;
	text-align: center;
}
/* focused text form input */
input[type=text]:focus{
	background-color: #c4d600;
	color: #3a3a3c;
}
/* button */
button{
	background-color: #c4d600;
	color: #3a3a3c;
	margin: 20px;
	padding: 10px;
	font-size: 20px;
	font-family: monospace;
}
/* submit error message */
#error-message{
text-align: center;
font-size: 30px;
margin: auto;
display: flex;
justify-content: center;
flex-direction: column;
}
/* submit success lore */
#success{
display: flex;
justify-content: center;
text-align: center;
font-size:20px;
margin: auto;
flex-direction: column;
}
.message{
	text-align: center;
}
/* puzzle gallery */
.puzzle-gallery{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.puzzle-image{
	width: 100%;
	height: auto;
	margin: 5px;
	padding: 10px;
}
.puzzle-clues{
	flex: 33.33%;
	max-width: 33.33%;
	padding: 10px;
}
.single-image{
	flex: 33.33%;
	max-width: 70%;
	padding: 10px;
}
.puzzle-column{
	flex: 25%;
	max-width: 40%;
	padding: 10px;
}
#PD3{
	text-align: center;
}
/* folders */
.folder-image{
	position: relative;
	text-align: center;
	color: #FFFFFF;
}
.folder-label{
	position: absolute;
	top: 20%;
	left: 17%;
	transform: translate(-50%, -50%);
}
.folder-image:hover{
	transform: scale(1.2);
}
/* tabs */
.tabcontent{
	display: none;
}
/* Scroll to top button*/
#myBtn{
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: #c4d600;
	color: #3a3a3c;
	cursor: pointer;
	padding: 15px;
	font-size: 18px;
}
#myBtn:hover{
	background-color; #FFFFFF;
}
/* survey link */
#survey-reward{
	color: #c4d600;
}
/* adjust for phones */
@media (max-width:700px){
	.container{
		flex-direction: column;
	}
	h1{
		font-size: 75px;
	}
	.puzzle-column, .puzzle-clues, .puzzle-image, .single-image{
		flex: 100%;
		max-width:100%;
	}
}
