html,
body {
	margin: 0;
	width: 100%;
	min-height: 100vh;
}

body {
	font-family: 'Roboto', sans-serif;

	display: flex;
	align-items: center;
	justify-content: center;

	text-align: center;

	background: linear-gradient(135deg, #ffe3ec, #ffd6f5);
	padding: 2rem;
	box-sizing: border-box;
}

.container {
	width: min(700px, 80%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

#header {
	margin-bottom: 0;
}

#counter {
	margin-top: 0;
}

.card {
	width: 100%;
	min-height: 180px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: white;
	border-radius: 24px;
	padding: 2rem;

	font-size: 1.5rem;
	line-height: 1.5;

	box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);

	cursor: pointer;
}

#list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#list li {
	margin-bottom: 12px;
	text-wrap: balance;
}

#list li:first-child {
	font-weight: bold;
}

#list li:not(:first-child) {
	color: grey;
}

#list li:last-child {
	margin-bottom: 0;
}