body {
	margin: 0;
	padding: 0;
	font-family: "Inter", sans-serif;
	color: #1f2937;
	background: #ffffff;
	min-height: 100dvh;

	display: flex;
	flex-direction: column;
}

* {
	box-sizing: border-box;
}

.container {
	flex: 1 1 0%;
	display: flex;
	align-content: center;
	justify-content: center;
	width: 100%;
	flex-direction: column;
	text-align: center;
	padding: 60px 20px;
	gap: 16px;

	img {
		height: 70px;
		width: auto;
	}

	h1 {
		font-size: 28px;
		font-weight: 600;
		line-height: 1.35em;
	}
	h2 {
		max-width: 250px;
		margin: 0 auto;
		padding-top: 8px;
		color: #717182;
		font-size: 18px;
		font-weight: 500;
		line-height: 1.35em;
	}

	p {
		padding-top: 20px;
		color: #717182;
		opacity: 0.9;
		font-size: 15px;
	}

	.description {
		display: grid;
		max-width: 350px;
		margin: 0 auto;
		line-height: 1.5em;
	}
}

footer {
	text-align: center;
	display: grid;
	gap: 8px;
	padding: 0 20px 20px;
	.label {
		color: #717182;
		font-size: 12px;
	}
	.legal {
		color: #717182;
		opacity: 0.6;
		font-size: 12px;
	}
}

h1,
h2,
p {
	margin: 0;
}

@media screen and (min-width: 680px) {
	.container {
		gap: 20px;
		img {
			height: 100px;
		}

		h1 {
			max-width: unset;
			font-size: 40px;
		}

		h2 {
			max-width: unset;
			padding-top: 10px;
			font-size: 22px;
		}

		p {
			padding-top: 24px;
			font-size: 16px;
		}

		.description {
			max-width: 700px;
		}
	}

	footer {
		.label {
			font-size: 14px;
		}
		.legal {
			font-size: 12px;
		}
	}
}

.progress-container {
	padding-top: 8px;
	display: grid;
	gap: 12px;
	.label {
		font-size: 14px;
		color: #717182;

		b {
			font-weight: 500;
			color: #1f2937;
		}
	}
}

.progress {
	margin: 0 auto;
	width: 150px;
	height: 4px;
	background: #f5f5f7;
	position: relative;
	border-radius: 99px;
	overflow: hidden;

	.bar {
		animation: animate-progress .3s .3s forwards;
		background: #e50047;
		width: 0%;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
	}
}

@keyframes animate-progress {
	from {
		width: 0%;
	}
	to {
		width: 90%;
	}
}
