.question-container {
	color: #000;
	font-family: "Reddit Mono";
	font-weight: 500;
	display: flex;
	flex-direction: column;
	gap: clamp(16px, 6vw, 90px);
	margin: clamp(16px, 6vw, 90px) clamp(16px, 6.67vw, 100px);
	display: none;
}

.question-container:target {
	display: flex;
	flex-direction: column;
}

.question-container:target ~ .main-page {
	display: none;
}

.question {
	font-size: clamp(16px, 2.67vw, 40px);
	text-transform: uppercase;
	animation: fadeIn 0.5s ease-in-out;
}

.answer {
	font-size: clamp(15px, 2.67vw, 40px);
	animation: fadeIn 0.5s ease-in-out;
}

.navigation {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: fixed;
	right: 67px;
	bottom: 75px;
	gap: 8px;
}

.arrow-btn {
	border-radius: 40px;
	cursor: pointer;
	width: 68px;
	height: 68px;
	flex-shrink: 0;
	background: #3F3F3F;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.back-btn {
    display: flex;
    justify-content: center;
    align-items: center;
	text-decoration: none;
	border: none;
	color: #FFF;
	font-family: "Reddit Mono";
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	cursor: pointer;
	width: 182px;
	height: 68px;
	flex-shrink: 0;
	border-radius: 40px;
	background: #3F3F3F;
}
