/* Reiniciar márgenes y paddings predeterminados */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Estilo global */
body {
	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	margin: 0;
	background-color: #4E684A;
}

/* Centrando el logo */
.logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
}

/* Estilizar el logo */
.logo {
	max-width: 100%;
	height: auto;
	max-height: 100px; /* Controla la altura máxima del logo */
}

/* Texto de bienvenida */
.intro {
	text-align: center;
	padding: 20px;
}

h1 {
	font-size: 2.5em;
	margin-bottom: 10px;
}

p {
	font-size: 1.2em;
}

/* Footer */
footer {
	color: #fff;
	padding: 10px 0;
	text-align: center;
	width: 100%;
}

/* Responsivo */
@media (max-width: 768px) {
	h1 {
		font-size: 2em;
	}

	p {
		font-size: 1em;
	}

	.logo {
		max-height: 80px; /* Reduce el tamaño del logo en pantallas más pequeñas */
	}
}
