
html, body {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#left {
	position: absolute;
	z-index: 2;
	width: 50%;
	height: 100%;
	left: 0;
	background-color: #424268;
	transition: 4s;
	-moz-transition: 4s;
	-webkit-transition: 4s;
}

#right {
	position: absolute;
	z-index: 2;
	width: 50%;
	height: 100%;
	right: 0;
	background-color: #505080;
	transition: 4s;
	-moz-transition: 4s;
	-webkit-transition: 4s;
}

#y1 {
	z-index: 2;
	top: 100px;
	float: right;
}

#y2 {
	z-index: 2;
	top: 100px;
	float: left;
}

#y {
	height: 300px;
	left: 50%;
	margin-left: -150px;
	position: absolute;
	top: 50px;
	width: 300px;
	z-index: 2;
}

#hello {
	position: absolute;
	width: 200px;
	height: 80px;
	left: 50%;
	top: 200px;
	margin-left: -100px;
	text-align: center;
	font-size: 50px;
	cursor: pointer;
	transition: 1s;
	-moz-transition: 1s;
	-webkit-transition: 1s;
}

#imyam {
	position: absolute;
	width: 100%;
	height: 200%;
	margin-top: -100%;
	margin-left: -100%;
	padding-top: calc(100% + 200px);
	transform: rotate(-90deg);
	transform-origin: 100% 100%;
	text-align: center;
	font-size: 50px;
	background-color: black;
	color: white;
	z-index: 2;
	transition: 1s;
}

#dialogue {
	height: 100%;
	transition: 3s;
}

#tobecontinued {
	margin-top: 100%;
}

#sayHello, #complaint {
	opacity: 0;
	transition: 1s;
}

#response, #response2 {
	width: 0%;
	height: 80px;
	font-size: 40px;
	line-height: 80px;
	background-color: white;
	color: black;
	transition: 1s;
	margin: 0 auto;
	opacity: 0;
}

.comment {
	font-style: italic;
	font-size: 30px;
	opacity: 0;
	transition: 1s;
}

.noDisplay {
	display: none;
}

button {
	cursor: pointer;
}

.blink {
	animation: blink 1.2s steps(5, start) infinite;
	-webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
	to { visibility: hidden; }
}
@-webkit-keyframes blink {
	to { visibility: hidden; }
}