body {
	font-family: 'Comfortaa', sans-serif;
	background: #fdfbf8;
	color: #444;
	text-align: center;
	padding: 2rem;
}

main {
	max-width: 600px;
	margin: 0 auto;
}

button {
	font-family: 'Comfortaa', sans-serif;
	background: #efeaff;
	border: none;
	padding: 10px 16px;
	margin: 8px;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 1rem;
}

button:hover {
	background: #e0d6ff;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1rem;
}

#prediction {
	font-size: 1.3rem;
	margin-top: 1rem;
	font-weight: 600;
	transition: color 0.5s ease;
}

#canvas-container {
	background: #f0f1f3;
	border-radius: 20px;
	padding: 1rem;
	margin-top: 1.5rem;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
}
