body {
	font-family: 'Arial', sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	height: 98vh;
	margin: 0;
	background: linear-gradient(to right, #6DD5FA, #2979FF);
	color: #333;
	text-align: center;
	font-size: 16px;
	padding: 5px;
	box-sizing: border-box;
	width: 98vw;
}
a {
	color: #4e1a83;
}
.hide{
	display: none;
}
header, main, footer {
	width: 100%;
	max-width: 1200px;
	flex-basis: 50px;
}
header {
	flex-grow: 0;
}
main {
	flex-grow: 1;
}
footer {
	flex-grow: 0;
}
p {
	text-align: center;
}
#content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 5px;
	width: 100%;
	height: 100%;
}
#content > div {
	font-size: clamp(1.5rem, 4vw, 3rem);
}
#input-box {
	width: 100%;
	padding: 10px 0px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 25px;
}
#input_answer {
	width: 150px;
	height: 34px;
}
#riddleNumber {
	padding: 0 10px;
}
#riddlesText {
	width: auto;
}
#inputRiddleNumber {
	width: 50px;
	height: 50px;
}
.riddleConent {
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
	border: solid 3px #fff;
	padding: 10px 0;
	height: 50vh;
	width: 95%;
	min-width: 300px;
	max-width: 800px;
}
.riddleConent > p {
	padding: 0 15px;
}
#riddle-box {
	flex-grow: 1;
}

/* buttons */
#setRiddleButton {
	color: #960000;
}
#btn button {
	color: #4e1a83;
}
#submit_button {
	color: #4e1a83;
}
button {
	width: 100%;
	height: 40px;
	min-width: 50px;
	max-width: 110px;
	margin: 5px 0;
}
input:focus-visible, button:focus-visible, a:focus-visible {
	border: solid 3px red;
}

/* icons */
#wrong, #right {
	height: 40px;
	width: auto;
}
#wrong svg {
	color: red;
	height: 100%;
	width: auto;
}
#right svg {
	color: green;
	height: 100%;
	width: auto;
}