/* Olivia Hurley 7/26/16 */
/* Last edited 1/25/2016 */

/* Default settings are for a screen smaller than 500px wide */
/* Settings for larger screens are below */

@keyframes fade {
	0% { 
		opacity: 1;
		filter: none;
	}
	99% {
	   opacity: 0;
	   color: white;
	   border-color: white;
	   filter: blur(20px);
	}
	100% { top: -500px; }
}

.message {
	position: fixed;
	display: block;
	z-index: 1;
	left: 50%;
	transform: translate(-50%, 0);
	top: 10%;
	background-color: white;
	color: darkorange;
	font-weight: bold;
	box-shadow: 0 10px 50px 5px black;
	padding: 20px;
	border-radius: 20px;
	border: 4px ridge green;
	text-align: center;
	animation: fade 2s ease 2s 1 forwards;
}

* {
	font-family: "Verdana";
}

body {
	background-color: #1d311b;
	margin: 0;
}

header {
	color: white;
	text-align: center;
	padding: 10px;
}

h1 {
	margin: 0;
}

h2 {
	margin: 0;
	font-weight: normal;
	font-size: 10pt;
}

h2 strong {
	color: limegreen;
}

h3 { text-align: center; }

strong {
	color: green;
}

#content {
	text-align: center;
	padding: 5px;
	background-color: #eddac5;
	color: #130d06;
	display: flex;
	flex-direction: column;
	overflow: auto;
}

form {
	order: 0;
}

#note {
	font-style: italic;
	color: green;
}

#inputwrapper {
	text-align: center;
}

.label {
	font-size: 20pt;
	color: green;
	margin-top: 10px;
}

textarea {
	padding: 10px;
	margin: 0 20px;
	width: calc(100% - 40px);
}

.verbose {
	display: inline-block;
	vertical-align: top;
	text-align: left;
	font-size: 10pt;
	min-width: 300px;
	order: 1;
}

li { padding-bottom: 10px; }

#buttonwrapper { text-align: center; }
#button {
	font-size: 24pt;
	color: #976e4e;
	background-color: #000;
	padding: 10px;
	width: 170px;
	display: inline-block;
	text-align: center;
	margin-top: 10px;
	border-radius: 10px;
	cursor: pointer;
	border-width: 0;
}
#button:hover { color: #00cc00; }
#buttonlabel { visibility: hidden; }

footer {
	text-align: center;
	font-size: 8pt;
	color: #eddac5;
	padding: 10px;
}

.lightlink { color: #e1c09d; }
.lightlink:visited { color: #ff9933; }

/* for screens larger than 500px */
@media screen and (min-width: 500px) {
	.message { 
		padding: 30px 50px;
		margin-top: 50px;
	}
	#content {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	.verbose {
		min-width: 0;
		max-width: 40%;
		padding: 0 20px;
	}
	
	#inputwrapper {
		display: flex;
		flex-direction: row;
	}
}

/* for screens larger than 1000px */
@media screen and (min-width: 1000px) {
	h1 { margin-bottom: 10px; }
	h2 { margin-bottom: 10px; }
	#note { display: none; }
	
	.verbose {
		order: 0;
		max-width: none;
	}
	
	textarea {
		width: 100%;
		margin: 0;
	}
	
	#content { 
		margin: 0 7%;
		padding: 10px;
		border-radius: 20px;
		flex-wrap: nowrap;
	}
	
	#inputwrapper { display: block; }
}