/* ============================================
   Illumination Menu - CSS Style Definitions
   ============================================ */

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: RGB(240,240,240);
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100vh;
}

header {
	width: 100%;
	padding: 10px 20px;
	background-color: #606060;
	color: white;
	text-align: center;
	font-size: 1.5em;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	width: 80%;
	max-width: 800px;
	margin: 20px auto;
}

.button {
	background: linear-gradient(to bottom, #f5f5f5, #cccccc);
	border: 1px solid #a0a0a0;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	font-size: 1.2em;
	color: #404040;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: box-shadow 0.3s, transform 0.2s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
	transform: scale(1.05);
}

.button img {
	width: 48px;
	height: 48px;
	margin-bottom: 10px;
}
