@font-face { font-family: "icons"; src: url("../fonts/icons.ttf"); }

html, body, .container {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main {
	position: relative;
	height: 40%;
	width: 40%;
	color: #111111;
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	text-align: left;
	line-height: 1.5em;
}

.quote {
	position: absolute;
	bottom: 70%;
	width: 100%;
	text-align: justify;
	white-space: pre-wrap;
}

.quote:before {
	content: "\201C";
	position: absolute;
	margin-left: -0.5em;
	font-size: 125%;
}

.quote:after {
	content: "\201D";
	position: relative;
	font-size: 125%;
}

.source {
	position: absolute;
	bottom: 50%;
	width: 100%;
	text-align: right;
}

.next {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 35%;
	margin: 0px;
	padding: 5px 0px;
	border: none;
	color: inherit;
	background-color: transparent;
	font: inherit;
	text-align: center;
	text-decoration: none;
}

.next:focus, .next:active {
	outline: none;
}

.next span {
	cursor: pointer;
}

.next span:after {
	content: "\279D";
	position: relative;
	top: 1px;
	opacity: 0;
	transition: 0.2s;
}

.next:hover span:after {
	opacity: 1;
}