body {
    background: #f3edf7; // #fafafa; // #223f82;
	box-sizing: border-box;
	color: black;
	font-family: 'Segoe UI', 'Verdana';
	font-weight: 400;
	line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
	padding: 8px;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

.is_block {
	background-color: #f8f8f8;
	border: 2px solid;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}

.is_block_text {
	font-size: 18px;
	padding: 8px;
	text-align: justify;
}

.is_person_block {
	padding: 8px 8px 0px 8px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.is_person_text {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -.44px;
	line-height: 1.5;
}

.is_role {
	font-size: 16px;
	margin-top: -16px;
	padding: 0px 0px 16px 0px;
}

.is_contacts {
	padding: 0px 0px 4px 0px;
}

.is_flag {
	opacity: 0;
}

.is_running_string {
	animation: scroll 30s linear infinite;
	white-space: nowrap;
}

@keyframes scroll {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}