#container {
	/* Center the text in the viewport. */
	position: relative;
	margin: auto;
	width: 100vw;
	height: 65%;
	top: 0;
	bottom: 0;
    
	/* This filter is a lot of the magic, try commenting it out to see how the morphing works! */
	filter: url(#threshold) blur(0.6px);
}

/* Your average text styling */
#text1, #text2 {
	position: absolute;
	top: calc(75%/2 + 80pt/2);
	width: 100%;
	display: inline-block;
	
	font-size: 80pt;
	
	text-align: center;
	
	user-select: none;
}