﻿<style >
body {
	margin: 0;
	font-family: 'Arial', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Gradiente escuro */
	color: #fff;
	text-align: center;
	overflow: hidden;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	max-width: 90%;
}

.logo {
	max-width: 350px;
	height: auto;
	margin-bottom: 40px;
	animation: fadeIn 2s ease-out;
}

h1 {
	font-size: 3.5em;
	margin-bottom: 20px;
	color: #ffffff;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
	animation: slideInFromTop 1.5s ease-out;
}

p {
	font-size: 1.8em;
	line-height: 1.5;
	color: #dddddd;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
	animation: fadeIn 2.5s ease-out;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideInFromTop {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.logo {
		max-width: 250px;
	}

	h1 {
		font-size: 2.5em;
	}

	p {
		font-size: 1.4em;
	}
}

@media (max-width: 480px) {
	.logo {
		max-width: 200px;
	}

	h1 {
		font-size: 1.8em;
	}

	p {
		font-size: 1.1em;
	}
}

</style >
