html, body {
	margin: 0 auto;
	font-family: "Helsinki", Arial, Helvetica, sans-serif;
	color: #a8a3bf;
	background-color: #7d759e;
	height: 100%;
}

@font-face {
  font-family: Helsinki;
  src: url("helsinki.ttf");
}

#frame
{
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
}

#innerframe
{
	margin: 0 auto;
}

#thought
{
	position: absolute;
}

#thoughtcontent
{
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: flex;
	font-size: 1.5rem;
	font-style: italic;
	align-items: center;
	justify-content: center;
	text-align: center;
	animation: fadeInText 1.5s;
}

#kat
{
	position: absolute;
	background-image: url("kat.png");
	background-repeat: no-repeat;
	background-position: center center; 
	background-size: contain;
}

@keyframes fadeInText
{
  0% { opacity: 0; }
  33% { opacity: 0; }
  100% { opacity: 1; }
}



