* {
	margin: 0;
	padding: 0;
	font-family: 'Helvetica', sans-serif;
	letter-spacing: -0.1vw;
}

*::selection {
	background-color: rgba(255, 0, 0, 0.99);
	color: rgba(0, 0, 0, 0.99);
}

.page {
	position: relative;
	width: 100vw;
	height: 100vh;
	display: block;
	overflow: hidden;
	float: left;
	font-size: 20px;
}

.split {
	position: relative;
	display: block;
	float: left;
	width: 50%;
	height: 100vh;
	overflow-y: scroll;
}
.black {
	background-color: black;
	color: white;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	line-height: 0.8;
	text-transform: uppercase;
	letter-spacing: -0.8vw;
}

.title {
	font-size: 5vw;
	line-height: inherit;
	letter-spacing: -0.4vw;
	text-transform: uppercase;
	word-break: break-all;
	hyphens: manual;
	-webkit-hyphens: manual;
}
.pubDate {
	font-size: 20px;
	display: inline;
	white-space: nowrap;
}
.circle {
	border-radius: 50%;
	width: calc(5vw * 0.7);
	height: calc(5vw * 0.7);
	background-color: black;
	margin-left: 1vw;
	position: static;
	display: inline-flex;
	color: white;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-size: 4vw;
	font-family: 'Times New Roman', serif;

}
.black .circle {
	background-color: white;
	color: black;
}
.enclosure {
	max-height: calc(5vw * 0.7);
	margin-left: 1vw;
	display: inline;
	position: relative;
	filter: invert(1.0);
	mix-blend-mode: difference;
}

.item {
	position: relative;
	width: 100%;
	float: left;
	clear: both;
	opacity: 0;
	display: block;
	/*padding-bottom: calc(5vw * 0.7);*/
}

.item:nth-of-type(1) {
	animation: 1.0s showItem calc(0.1s * 3) 1 forwards;
}
.item:nth-of-type(2) {
	animation: 1.0s showItem calc(0.2s * 3) 1 forwards;
}
.item:nth-of-type(3) {
	animation: 1.0s showItem calc(0.3s * 3) 1 forwards;
}
.item:nth-of-type(4) {
	animation: 1.0s showItem calc(0.4s * 3) 1 forwards;
}
.item:nth-of-type(5) {
	animation: 1.0s showItem calc(0.5s * 3) 1 forwards;
}
.item:nth-of-type(6) {
	animation: 1.0s showItem calc(0.6s * 3) 1 forwards;
}
.item:nth-of-type(7) {
	animation: 1.0s showItem calc(0.7s * 3) 1 forwards;
}
.item:nth-of-type(8) {
	animation: 1.0s showItem calc(0.8s * 3) 1 forwards;
}
.item:nth-of-type(9) {
	animation: 1.0s showItem calc(0.9s * 3) 1 forwards;
}
.item:nth-of-type(10) {
	animation: 1.0s showItem calc(1.0s * 3) 1 forwards;
}


@keyframes showItem {
	from {
		opacity: 0;
		line-height: 1;
	}
	to {
		opacity: 1;
		line-height: 0.8;
	}
}


