/* styles.css */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f8f9fa;
}

.container {
	max-width: 800px;
	margin: 50px auto;
	text-align: center;
}

h1 {
	color: #333;
}

.tools {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.tool {
	background-color: #fff;
	padding: 20px;
	margin: 10px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease-in-out;
}

	.tool a {
		text-decoration: none;
		color: #333;
	}

	.tool:hover {
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	}

/* styles.css */
