* {
	margin: 0;
	padding: 0;
}
body {
	font-family: sans-serif;
	background: #fcf9f5;
	letter-spacing: 1px;
}
.wrapper {
	max-width: 50vw;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
}


/*---- Описание и правила ----*/
h1 {
	font-size: 65px;
}
.wrapper > h2 {
	font-size: 45px;
	margin: 20px 0;
}
article {
	color: white;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 50px;
}
.slideRules {
	background: #991525;
	font-size: 30px;
	padding: 10px 20px;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}
.slideRules:hover {
	cursor: pointer;
}
#rules {
	padding: 20px;
	font-size: 25px;
	border-radius-bottom: 10px;
	background: #cde8ea;
	color: black;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	display: none;
}
/*---- ------------------ ----*/


/*---- Прогресс выполнения (Knob) ----*/
.taskProgress {
	position: fixed;
	top: 40vh;
	left: 1vw;
	padding: 2.5vh;
}
.taskProgress p {
	text-align: center;
	font-size: 40px;
	margin-bottom: 10px;
}
/*---- ------------------ ----*/


/*---- Изображение и поле для ввода ответа ----*/
.img {
	width: 65%;
}

.img img{
	box-shadow: 0 0 20px black;
	width: 100%;
}

.answer {
	width: 65%;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}

#inputTask1 {
	flex-grow: 1;
	font-size: 35px;
	padding: 10px;
	background: rgba(0, 0, 0, 0);
	border: none;
	border-bottom: 1px solid black;
}

#inputTask1:focus {
	outline: none;
}

#btnTask1 {
	flex-grow: 1;
	font-size: 30px;
	color: white;
	background: #991525;
	border: none;
	border-bottom: 1px solid black;
}

#btnTask1:hover {
	cursor: pointer;
}
/*---- ------------------ ----*/

/*canvas {
	width: 20vw;
}*/

/*---- кнопка перехода к след заданию ----*/
#nextTask {
	position: fixed;
	right: 2vw;
	bottom: 45vh;
	width: 250px;
	height: 10vh;
	font-size: 40px;
	background: #991525;
	color: white;
	display: none;
	justify-content: center;
	align-items: center;
	border-radius: 12px;
}
/*---- ------------------ ----*/