img {
	width: auto;
	height: 100vh;
}

main {
	font-family: 'Courier New', Courier, monospace;
	font-size: 1.5em;
	font-style: italic;
	letter-spacing: 0.05em;
	text-align: justify;
	color: #eee;
	position: absolute;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(to left, #183ac6 40%, transparent 110%);
	padding: 70px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	overflow: hidden;
	justify-content: center;
}

body {
	background-color: #183ac6;
}

.dialog {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.dialog-line {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.dialog-line img {
	width: 64px;
	height: 64px;
}

.speaker {
	font-weight: bold;
	color: #a9a9a9;
}

.narrator .speaker {
	color: #ffffff;
}

.zeus .speaker {
	color: #f1c40f;
}

.shyrka .speaker {
	color: #3498db;
}

.text {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.language-selector {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 1;
}

.language-selector button {
	background-color: #eee;
	border: 1px solid #183ac6;
	color: #183ac6;
	padding: 0.5rem;
	cursor: pointer;
	font-family: 'Courier New', Courier, monospace;
}

.language-selector button:hover {
	background-color: #183ac6;
	color: #eee;
}