body {
	max-height: 100%;
	max-width: 100%;
	overflow: hidden;
	background-color: #EEE;
	font-family: Oxygen, sans-serif;
}

#horo-body {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-color: #EEE;
	padding: 1em;
	box-sizing: border-box;
	border: thin #444 solid;
	text-align: center;
	max-width: 100%;
}

#horo-text {
	font-size: 2em;
	font-weight: bold;
	display: flex;
	align-items: center;
}

#horo-text img {
	max-height: 200px;
	margin-right: 1em;
}

#horo-input-wrapper {
	margin-top: 1em;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: center;
}

#horo-input {
	flex: 1 0 0;
	font-size: 1.4em;
	margin-right: 0.5em;
}

#horo-submit {
	flex: 0 0 auto;
	font-size: 1.4em;
}

#horo-debug {
	margin-top: 0.5em;
	font-size: 2em;
	font-weight: bold;
}

#horo-images {
	display: inline-block;
	width: auto;
	column-width: 500px;
	column-gap: 0px;
}

@media only screen and (max-width: 1398px) {
	#horo-text, #horo-text img, #horo-text span {
		display: block;
	}

	#horo-text {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}