html {
	background-color: #fcfff5;
	height: 100%;
	width: 100%;
	margin: 0;
	color: white;
	background-image: url("background.png");
}

html,body {
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
}

a {
	color: mediumspringgreen;
}

.panel-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	height: 100%;
	position: relative;
}

.rounded-panel-left {
	border-color: goldenrod;
	border-width: 10px;
	border-style: double;
	border-radius: 30px;
	background-image: url("background2.png");
	width: 200px;
	height: 600px;
	margin: 5px;
	overflow: auto;
}

.rounded-panel-right {
	border-color: goldenrod;
	border-width: 10px;
	border-style: double;
	border-radius: 30px;
	background-image: url("background2.png");
	width: 700px;
	height: 600px;
	margin: 5px;
	overflow: auto;
}

.prof-img {
	margin: 5px;
	border-radius: 10%;
	width: 130px;
	height: 130px;
}

.map-img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

span {
	margin: 5px;
}

.image-txt-container {
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
}

.panel-margins {
	margin: 15px;
	margin-top: 30px;
}

p {
	text-align: justify;
}

span {
	text-align: justify;
}

.openpanel {
	color:mediumspringgreen;
}

h1 {
	margin-top: -15px;
	margin-bottom: 0px;
	text-align: center;
}

.trip-recap {
	margin-left: 10px;
	margin-right: 10px;
}

.description {
	margin-top: 0.5em;
	margin-left: 0.5em;
}

.question {
	font-style: italic;
	font-weight: bold;
	margin-bottom: -0.5em;
	margin-left: 10px;
	text-indent: -10px;
	text-align: justify;
	padding-right: 4px;
}

.answer {
	margin-left: 10px;
	text-indent: 15px;
	padding-right: 20px;
	text-align: justify;
}

form {
	/* Center the form on the page */
	margin: 0 auto;
	margin-top: 15px;
	width: 500px;
	/* Form outline */
	padding: 1em;
	border: 1px solid #CCC;
	border-radius: 1em;
}

.table-of-contents {
	list-style: ">> ";
	padding: 0;
	margin: -10px 0px 0px 20px;
}

.form-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

form li {
	margin-top: 1em;	
}

li {
	margin-bottom: 10px;
}

label {
	/* Uniform size & alignment */
	display: inline-block;
	width: 140px;
	text-align: right;
}

input, 
textarea {
	/* To make sure that all text fields have the same font settings
		By default, textareas have a monospace font */
	font: 1em times;

	/* Uniform text field size */
	width: 350px;
	box-sizing: border-box;

	/* Match form field borders */
	border: 1px solid #999;
}

input:focus, 
textarea:focus {
	/* Additional highlight for focused elements */
	border-color: #000;
}

textarea {
	/* Align multiline text fields with their labels */
	vertical-align: top;

	/* Provide space to type some text */
	height: 5em;
}

.button {
	/* Align buttons with the text fields */
	padding-left: 140px; /* same size as the label elements */
}

button {
	/* This extra margin represent roughly the same space as the space
		between the labels and their text fields */
	margin-left: .5em;
}

.button-submit-text {
	padding-left: 90px;
	margin-left: 0.2em;
	font-style: italic;
}

@keyframes colorshift {
    /*100% { background: linear-gradient(to top left, turquoise, rgba(255, 153, 150, 0), yellow), linear-gradient(to top right, orange, rgba(255, 153, 150, 0), green) rgba(200, 0, 255, 1); }*/
	0% { background: linear-gradient(to top left, white, rgba(255, 153, 150, 0), red), linear-gradient(to top right, yellow, rgba(255, 153, 150, 0), magenta) rgba(0, 153, 255, 1); }
}

.gradient-text {
	/*animation: colorshift 1s infinite alternate;*/
	background: linear-gradient(to top left, red, rgba(255, 153, 150, 0), red), linear-gradient(to top right, yellow, rgba(255, 153, 150, 0), rgba(0, 255, 0, 1)) rgba(0, 153, 255, 1);
	/* clip hackery */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	margin-bottom: 0em;
}

/* standard gradient background */
/*background: linear-gradient(to top left, white, rgba(255, 153, 150, 0), red), linear-gradient(to top right, yellow, rgba(255, 153, 150, 0), magenta) rgba(0, 153, 255, 1);
	60% { background: linear-gradient(to top left, lavender, rgba(255, 153, 150, 0), indigo), linear-gradient(to top right, yellow, rgba(255, 153, 150, 0), magenta) rgba(100, 255, 0, 1); }
*/

.char1 {
	transform-origin: bottom center;
	position: absolute;
	transform: rotate(-20deg) translate(-1em, -0.3em);
}

.char2 {
	transform-origin: bottom center;
	position: absolute;
	transform: rotate(20deg) translate(-0.7em);
}

.char3 {
	transform-origin: bottom center;
	position: absolute;
	transform: rotate(-12deg) translate(0.4em, 0.2em);
}

.article-title {
	/* Uniform size & alignment */
	display: inline-block;
	width: 320px;
	text-align: left;
	margin-left: 10px;
}

.article-date {
	/* Uniform text field size */
	display: inline-block;
	text-align: right;
	width: 80px;
}

.article-entry {
	margin-top: -5px;
}

.article-text {
	margin-left: 10px;
	text-indent: 15px;
	padding-right: 20px;
	text-align: justify;
	line-height: 130%;
}

.bird-image {
	background-color: #a2da20;
	display: block;
	margin-left: auto;
	margin-right: auto;
	object-fit: cover;
	width: 60%;
	border-radius: 0px;
}

.emoji {
	/*text-decoration:none;
	margin-right:-1px;
	font-size: 0.75rem;*/
	height: 1em;
	padding: 1px;
	vertical-align: bottom;
}

table {
	border: 1px solid orchid;
	border-radius:3px;
	font-size: 0.85rem;
}

td {
	border: 1px solid orchid;
	border-radius:2px;
	padding: 10px 20px;
}

.epigraph {
	text-align: center;
	margin: 20px 20px;
}

.epigraph-text {
	text-align: left;
	font-style: italic;
	display: inline-block;
	line-height: 135%;
	padding-left: 30px;
	padding-right: 30px;
}

.epigraph-attribution {
	text-align: left;
	margin-left: 318px;
	padding-right: 30px;
	line-height: 135%;
}

.spacer {
    margin: 30px;
}

ol.rules li {
	padding-left: 5px;
}