/* Reset and Base Styles */
html,
body {
	margin: 0;
	padding: 0;
	background-color: transparent;
	box-sizing: border-box;
}

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

/* CSS Variables */
:root {
	--letter-spacing: 0px;
	--font-size: 40px;
	--font-weight: 600;
	--text-transform: uppercase;
	--text-color: #fff;
	--text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	--font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI',
		'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Layout */
.widget-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

/* Countdown Display */
#countdownLabel {
	font-size: var(--font-size);
	font-family: var(--font-family);
	font-weight: var(--font-weight);
	text-transform: var(--text-transform);
	color: var(--text-color);
	text-shadow: var(--text-shadow);
	letter-spacing: var(--letter-spacing);
	text-wrap: nowrap;
}
