
html, body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	background: #F2ECD8;
	color: #444;
	font-family: "Playfair Display", serif;
	font-weight: 400;
}
.dl {
	padding-top: 20vh;
	padding-bottom: 12vh;
}
.dt {
	margin-bottom: 1rem;
}
.dt h1 {
	color: #222;
	font-size: 6vw;
	font-weight: 900;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
footer {
	padding-top: 20vh;
}

@media screen and (orientation:portrait) {
  .dt h1 {
	font-size: 11vw;
  }
}

.dd p {
	font-size: 1.25rem;
	line-height: 2.0rem;
	font-weight: 400;
	letter-spacing: 0.5px;
}
.dd p .example {
	font-size: 1.25rem;
	line-height: 2.0rem;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: #999;
}
p strong {
	color: #736C56;
}
p.point {
	color: #222;
	transform: scale(-1, 1);
	padding-right: 15px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.redacted span {
	position: relative;
	white-space: pre;
	cursor: e-resize;
}
.redacted span:after {
	cursor: help;
	background-color: rgba(0,0,0,1);
	border-radius: 2px;
	__box-shadow: 0 0 1px rgba(0, 0, 0, 0.35);
	content: " ";
	width: 101%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;

	animation-name: disguise;
	animation-duration: 0.01s; 
	animation-timing-function: ease-in; 
	animation-fill-mode: forwards;
	animation-delay: 0s;
}
.redacted.reveal span:after {
	animation-name: reveal;
	animation-duration: 2s; 
	animation-timing-function: ease-out; 
	animation-fill-mode: forwards;
	animation-delay: 0s;
}
.redacted.sportwordheadline span:after {
	animation-name: reveal;
	animation-duration: 2s; 
	animation-timing-function: ease-out; 
	animation-fill-mode: forwards;
	animation-delay: 0.25s;
}
.hidden {
	opacity: 0;
	background: rgba(100,100,100,0);
}
.hidden.butdisplayed {
	animation-name: reveal_aux;
	animation-duration: 0.5s; 
	animation-timing-function: ease-out; 
	animation-fill-mode: forwards;
	animation-delay: 1.5s;
}
.hidden.butdisplayedfirst {
	animation-name: reveal_aux;
	animation-duration: 2s; 
	animation-timing-function: ease-out; 
	animation-fill-mode: forwards;
	animation-delay: 0.75s;
}

@keyframes reveal {
	0% {
		width: 101%;
	}
	100% {
		width: 0;
	}
}
@keyframes disguise {
	0% {
		width: 0;
	}
	100% {
		width: 101%;
	}
}
@keyframes reveal_aux {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes disguise_aux {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
