* {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 2vmin;
	font-size: clamp(1rem, calc(1vw + 1vh), 2rem);
	box-sizing: border-box;
	text-decoration: none;
	color: black;
}
a:hover {
	text-decoration: underline;
}
.Full {
	width: 100%;
}
.Full::after {
  content: "";
  clear: both;
  display: table;
}
.Centered {
	text-align: center;
	margin: 0 auto;
	padding: 10vmin 0;
}
.Contacts img {
	height: 1em;
	vertical-align: text-top;
}
.Contacts a {
	white-space: nowrap;
}
.Paragraph:not(:last-child) {
	margin-bottom:1em;
}
@media not (max-aspect-ratio: 3/4) {
	img.Column,
	.Column {
		width: 50%;
		padding: 10vmin;
	}
	.Left {
		float:left;
	}
	.Right {
		float:right;
	}
	.HideInLandscape {
		display: none;
	}
	.BackgroundInLandscape {
		background-size: cover;	
		background-position: center;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}
	.BackgroundInLandscape .Paragraph {
		text-shadow: 0 0 2em #ddd, 0 0 1em #eee, 0 0 0.5em #fff;
	}
	.Contacts a {
		margin-left:1em;
	}
}
@media (max-aspect-ratio: 3/4) {
	img.Column,
	.Column {
		width: 100%;
		padding: 5vmin;
	}
	.Left {
		float:none;
	}
	.Right {
		float:none;
	}
	.BackgroundInLandscape {
		background: none !important;
	}
	.Contacts a {
		display: block;
		margin-top:0.5em;
	}
}