body{
	background: #dbdcdd;
	scroll-behavior: smooth;
}

.castle{
	position: absolute;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: -1;
}

.italic{
	font-weight: 500;
	font-style: italic;
	color: #4d845f;
	display: inline;
}

.story{
	font-family: "Newsreader";
	font-weight: 380;
	font-size: 1.15rem;
	line-height: 1.5rem;
	text-align: justify;
	width: 100%;
	color: #1f5b30;
	padding-top: 10px;
}

a{
  color: #1f5b30;
  text-decoration: underline;
  display: inline;
}

/*SEPARATES LETTERS FOR JS PROPERTIES*/
.story span{
	display: inline-block;
	transform-origin: center;
	will-change: transform;
	transform: translateZ(0);
}

/*PREVENTS LINE BREAKS IN THE MIDDLE OF WORDS*/
.word{
	display: inline-block;
	white-space: nowrap;
}

/*MAKES SIZE CHANGE GENTLE*/
@keyframes fluctuate{
	0%, 100% { transform: scale(0.75); }
	50% { transform: scale(2); }
}