
/* Estilos generales */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Fondo con la imagen del lobo */
body {
    background-image: url('img/lobo-1.jpg');
    background-size: cover;
    background-position: center 28%; /* Ajusta el valor vertical (30% en este caso) */
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}
/* Navegador */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(7, 7, 7, 0.8); /* Fondo semi-transparente para mejor legibilidad */
   
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin: 0 15px;
}

/* Título en el centro */
h1 {
    text-align: center;
    color: white;
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Footer */
footer {
    background-color: black; /* Color marino */
    color: white;
    text-align: center;
    padding: 10px;
}
