@font-face {
	src: url("../fonts/gillsansregular.ttf") , url("../fonts/gillsansregular.woff");
	font-family: "Gill Sans";
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	/*font-size: 12px;*/
	font-family: "Gill Sans", Arial, Helvetica, sans-serif;
}

*:focus {
	outline: none;
}

[data-hidden="true"] {
	display: none !important;
}

body {
	overflow: hidden;
}

main {
	position: relative;
}

main, section {
	overflow: hidden;
	width: 1287px;
	height: 921px;
}

section {
	/*width: 1234px;
	height: 924px;*/
	position: absolute;
	top: 0px;
	left:0px;
}

section img {
	position: absolute;
}

h1 {
	text-align: center;
	font-size: 80px;
	margin-top: 180px;
	font-weight: 500;
	white-space: nowrap;
}

cite {
	display: block;
	white-space: nowrap;
	text-align: center;
	font-size: 22px;
	font-style: italic;
}

canvas {
	background-color: white;
}

button, select, option {
	font-family: Arial, Helvetica, sans-serif;
}

select {
    width: 314px;
    height: 40px;
    font-size: 20px;
}

select option {
	font-size: 19px;
}

select option:nth-child(2n) {
	background-color: rgb(239,228,176);
	color: black;
}

#wish {
	font-size: 22px;
}

select, button {
	border-radius: 8px;
	background: linear-gradient(to bottom, rgb(206, 210, 199) 0%, rgb(191, 200, 155) 82%, rgb(186, 195, 148) 100%);
	border-bottom: 2px solid #5A6165;
	border-left: 2px solid #787E81;
	border-right: 2px solid #787E81;
	border-top: 2px solid #A5A8AC;
	cursor: pointer;
}

select:not(:disabled):hover {
	background: linear-gradient(to top, rgb(216, 221, 193) 0%, rgb(239, 242, 228) 100%);
}

button:not(:disabled):hover, select:not(:disabled):hover {
	border: 2px solid dodgerblue;
}

button:disabled {
	cursor: default;
}

#start {
	display: block;
	font-size:20px;
	padding:5px 20px;
	/*margin: 175px auto;*/
	margin: 175px 470px;
	width: 365px;
	height: 135px;
}



.slide {
	/*background-color: #D6DEB6;*/
	background-color: rgb(173,188,109);
	/*padding: 104px 100px;*/
}

.slide[data-page="1"] > *[data-anim] {
	animation: 1.5s moveOut;
}

img[src*="plant1"] {
	left: 122px;
	top: 144px;
	width: 164px;
	height: 300px;
}

img[src*="plant-cell.png"] {
	left: 211px;
	top: 158px;
	width: 964px;
	height: 571px;
	transform: scale(0);
	transform-origin: 0px 0px;
}

img[src*="plant-cell.png"][data-anim] {
	animation: 1s bigger1 forwards linear;
}

button.continue {
	background: linear-gradient(to bottom, rgb(242, 244, 232) 0%, rgb(214, 218, 196) 84%, rgb(211, 215, 192) 100%);;
}

#controls {
	margin:20px 100px;
	width: 1100px;
	display: flex;
	justify-content: space-between;
}

#controls button.next[data-hidden="true"] {
	display: inline-block !important;
	visibility: hidden;
}

[data-page="2"] p {
	position: absolute;
	left: 150px;
	top: 225px;
	font-size: 45px;
}

[data-page="2"] button {
	padding: 5px 10px;
	position: absolute;
	left: 1030px;
	top: 744px;
	width: 178px;
	height: 40px;
	font-size: 20px;
}

[data-page="3"] {
	text-align: center;
}

[data-page="3"] button {
	width: 190px;
	height: 40px;
	font-size: 20px;
}

[data-page="4"] button  {
	width: 306px;
	height: 69px;
	font-size: 20px;
	margin-top: 330px;
}

[data-page="4"] {
	background: rgb(214,222,182);
	text-align: center;
}

[data-page="4"] p {
	margin-top: 294px;
	font-size: 40px;
}

#respSelect + button.next[data-hidden="true"] {
    visibility: hidden;
    display: inline-block !important;
}

@keyframes moveOut {
	to {
		margin-left: 1500px;
	}
}

@keyframes bigger1 {
	to {
		transform: scale(1);
	}
}