|
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Bienvenid@ a la ONG de Animales</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: 'Poppins', sans-serif;
|
|
background: linear-gradient(135deg, #74ebd5, #acb6e5);
|
|
color: #222;
|
|
text-align: center;
|
|
line-height: 1.6;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
min-height: 100vh;
|
|
}
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 0;
|
|
font-size: 4rem;
|
|
color: #000;
|
|
animation: slideIn 2s ease-out;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.3rem;
|
|
margin: 20px auto;
|
|
width: 70%;
|
|
max-width: 800px;
|
|
color: #333;
|
|
}
|
|
|
|
.buttons {
|
|
margin: 40px 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
}
|
|
|
|
.buttons a {
|
|
text-decoration: none;
|
|
padding: 15px 25px;
|
|
background-color: #000;
|
|
color: #fff;
|
|
border-radius: 50px;
|
|
font-size: 1.1rem;
|
|
font-weight: bold;
|
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.buttons a:hover {
|
|
background-color: #333;
|
|
transform: scale(1.1);
|
|
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.buttons a:active {
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
footer {
|
|
padding: 10px 0;
|
|
font-size: 0.9rem;
|
|
background-color: #1a1a1a;
|
|
color: #fff;
|
|
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
@keyframes slideIn {
|
|
from {
|
|
transform: translateY(-50px);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Bienvenid@ a la ONG de Animales</h1>
|
|
<p>Nos dedicamos a cuidar, proteger y buscar hogares para animales domesticos como perros, gatos y muchos mas. Unete a nuestra causa para ayudarles a tener una vida mejor.</p>
|
|
|
|
<div class="buttons">
|
|
<a href="catalogo.html">Catalogo</a>
|
|
<a href="personal.html">Seccion Personal</a>
|
|
<a href="contacto.html">Localizacion y Contacto</a>
|
|
<a href="colaboracion.html">Colaboracion</a>
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
Autor: Alba Collado Cano • Ultima modificacion: 12 de diciembre de 2024
|
|
</footer>
|
|
</body>
|
|
</html>
|