body {
	display: flex; /* Convierte el body en un contenedor flex */
	justify-content: center; /* Centra horizontalmente */
	align-items: center; /* Centra verticalmente */
	min-height: 40vh; /* Altura mínima igual al viewport */
	margin: 0; /* Elimina márgenes por defecto*/
	background-color: #FFFFFF;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #000000;
}