body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow-x: hidden;
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 37vw;
	height: 100%;
}

*[class^='step'] {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

*[class^='step'].active {
	display: flex;
}

*[class^='step'] h1 {
	font-size: 2.6rem;
	text-align: center;
	margin: 0.7rem 0;
}

*[class^='step'] h2 {
	font-weight: bolder;
	font-size: 2.6rem;
	margin: 0.7rem 0;
}

*[class^='step'] p {
	font-size: 1.4rem;
	line-height: 1.8rem;
	margin: 0.7rem 0;
}

.image-gallery {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem 3rem;
	width: 95%;
	padding-bottom: 1rem;
}

.image-gallery img {
	width: 40%;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0 0;
	gap: 1rem;
}

.header-checkboxes {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem 0 0;
	gap: 1rem;
}

*[class^='header'] h3 {
	color: #0084FFFF;
	font-size: 1.8rem;
	margin: 0;
}

.header-checkboxes p {
	color: #888;
	font-size: 1.2rem;
	margin: 0 0 1rem;
}

.question-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
}

.question-numbers span {
	background-color: #ececec;
	color: #888;
	font-size: 1.7rem;
	font-weight: bold;
	padding: 0.3rem 1rem;
	border-radius: 0.7rem;
}

.question-numbers span.active {
	background-color: #0084FFFF;
	color: #fff;
}

.checkboxes {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0.5rem;
	padding-bottom: 1rem;
}

.checkbox-wrapper {
	display: flex;
	align-items: center;
	font-size: 1.3rem;
	gap: 0.5rem;
}

.checkbox-wrapper input {
	height: 1.3rem;
	width: 1.3rem;
	cursor: pointer;
}

.actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	width: 100%;
}

form {
	width: 100%;
}

.btn {
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	width: 100%;
	padding: 1.2rem;
	border: none;
	border-radius: 0.3rem;
	cursor: pointer;
}

.btn.blue {
	background-color: #0084FFFF;
}

.btn.gray {
	background-color: #aaa;
}

.bold {
	font-weight: bold;
}

.underline {
	text-decoration: underline;
}


@media (orientation: portrait) {
	main {
		width: 87vw;
	}
}
