* {
	box-sizing: border-box;
	font-family: "Futura";
	font-size: 1em;
	}

.main{
	position: absolute;
	background-color: black;
	width: 25%;
	height: 60%;
	left: 50%;
	top: 5%;
	color: red;
	z-index: 1;
	}
.talking-head{
	position: fixed;
	font-weight:bold;
	font-size: 6em;
	padding: 20px;
	}
.square{
	position: relative;
	display: inline-block;
	transition: width 4s ease;
	width: 50%;
	height: 100%;
	float: right;
	right: 0px;
	background-color: white;
	z-index: 2;
}

.square:hover{
	width:0%;
	z-index: 2;
}
.square2{
	position: relative;
	display: inline-block;
	transition: width 4s ease;
	width: 50%;
	height: 100%;
	float: left;
	left: 0%;
	background-color: white;
	z-index: 3;
	}

.square2:hover{
	width:0%;
	z-index: 3;}

.poem{
	position: absolute;
	margin: auto;
	font-size: 1em;
	z-index: 1;
}

span{
	font-size:1em;
	color: red;
	