/*
Theme Name: Portafolio
Theme URI: http://urldeltema
Description: portafolio
Author: Nicolas-leal
Author URI: dirección web del autor
Version: 0.1
License: GNU General Public License (u otra)
Tags: etiquetas que ayuden a indexar el tema
*/

.hero {
  background-image: url(/img/hero.jpg);
  position: relative;
  width: 100%;
  height: max-content; /* Altura inicial del hero */
  overflow: hidden;
  background-size: cover; /* La imagen de fondo cubrirá todo el contenedor */
  background-position: center; /* La imagen se posicionará en el centro */
  }
  
  @media (max-width: 768px) {
    .hero {
      height: 200px; /* Altura automática en dispositivos móviles */
      top: -15px;
    }
  }