
.topNav {
	position  : relative;
	max-width : 700px;
	height    : 30px;
	width     : 90vw;
	left      : 50vw;
	margin-top: 30px;

	border-radius   : 20px;
	transform       : translateX(-50%);
	z-index: 999;
}

.topNav div {
	position: absolute;
	display        : flex;
	font-size      : calc(var(--font-size) + 0.2rem);
	font-family    : 'HandMade';
	align-items    : center;
	justify-content: center;
	text-align     : center;

	color: white;
	text-shadow: 0px 0px 10px white;
}

.topNav .questionDiv {
	margin-left: 10px;
}
.topNav .nextDiv {
	left: calc(100% - 12%);
	width: 12%;
	cursor: pointer;
}
.topNav .prevDiv {
	left: calc(100% - 24% - 25px);
	width: 12%;
	cursor: pointer;
}

.topNav .nextDiv:hover,
.topNav .prevDiv:hover {
	text-shadow: 0px 0px 5px white;
	color: #cccccc;
}
