/* Estilos generales */
body,
html {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: Arial, sans-serif;
}

.background-image {
	background-image: url('img/yoTeCuidoTuMeCuidas.png'); /* Cambia 'tu-imagen.jpg' por la ruta de tu imagen */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100%; /* Ocupa el 100% del alto de la ventana */
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #ffdf00; /* Color del texto */
}

h1 {
	font-size: 3rem; /* Tamaño del texto */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para mejorar la legibilidad */
}
