/* Explanation in JS tab */

/* Cool font from Google Fonts! */
@import url('https://fonts.googleapis.com/css?family=Raleway:900&display=swap');

#polymorphcontainer {
	/* Center the text in the viewport. */
	position: inherit;
	margin: auto;
	width: 100%;
	height: 80pt;
	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 */
#feed1, #feed2 {
	position: absolute;	
	white-space: nowrap; /* Don't forget this one */
	width: 100%;
	display: inherit;
	font-family: 'Raleway', sans-serif;
	font-size: 4.5vw;
	color: red;
	text-align: match-parent;
	user-select: none;
}