*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;

	padding: 2rem;

	background-color: #fff;
	color: #111;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#spin-counter {
	padding: 0.75em 1.5em;

	border-radius: 0.75rem;

	background-color: #111;
	color: #fff;

	font-size: clamp(1.5rem, 4vw, 3rem);
	text-align: center;
	line-height: 1.2;
}

#bucket-image {
	width: min(70vw, 500px);
	height: auto;

	animation: spin 2s linear infinite;

	user-select: none;
	-webkit-user-drag: none;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}