body{
	height: 100vh;
	width: 100vw;
	background-color: rgb(243, 243, 243);
	font-family: Helvetica, Arial, sans-serif;
	font-size: 60px;
	color: black;
	overflow:hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

h1 span{
transition: max-width 0.3s ease;
overflow:hidden;
max-width: 300px;
display: block;
}

h1{
	display:flex;

}

div.hover:hover span{
	max-width: 0px;
}

div.hover{
	display: flex;
	width: 50vw;
	justify-content: center;
	cursor: wait;
}