body {
	background-color: #f8f9fa;
	/* font-family: 'Arial', sans-serif; */
}
.espanol-container {
	margin-top: 50px;
	margin-bottom: 60px;
}
h1 {
	color: #007bff;
	font-weight: bold;
	margin-bottom: 40px;
}
.employee-card {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}
.employee-card:hover {
	transform: scale(1.05);
}
.employee-photo {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
}
.employee-info {
	margin-top: 15px;
}
h3 {
	color: #343a40;
	font-weight: 600;
}
p {
	color: #6c757d;
}
a {
	color: #007bff;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
