
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Times", serif;
	text-transform: lowercase;
	font-size: 18px;
	line-height: 1em;
	font-weight: normal;
}
.handshake {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	background-color: black;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.newsman {
	width: 100vw;
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.newsman img {
	width: 200px;
	height: 200px;
	object-fit: contain;
	image-rendering: pixelated;
}
.newsman[data-talking="0"] .newsman-talking {
	display: none;
}
.newsman[data-talking="1"] .newsman-default {
	display: none;
}
.dialogue {
	position: fixed;
	top: 55dvh;
	padding: 40px;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: min-content;
	flex-wrap: wrap;
	gap: 2ch .5ch;
}
.dialogue > span {
	white-space: nowrap;
}
.dialogue > span > span {
	display: inline-block;
	animation: move 1s infinite ease-in-out alternate;
}
@keyframes move {
	from {
		transform: translateY(-.5em);
	}
	to {
		transform: translateY(.5em);
	}
}