body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.titulo {
  margin-bottom: 20px;
}



header {
  background-image: url(Imagenes/background4.jpg); /* Asegúrate de usar la ruta correcta a tu imagen */
  color: #fff;
  padding: 1em;
  text-align: center;
  background-size: cover; /* Esto hará que la imagen de fondo cubra todo el espacio disponible */
  background-position: center; /* Esto centrará la imagen en el header */
}



header {
  background-color: #0a7c26;
  color: #fff;
  padding: 1em;
  text-align: center;
}




footer {
  background-image: url(Imagenes/background4.jpg); /* Reemplaza con la ruta correcta a tu imagen */
  color: #fffffff5;
  text-align: center;
  padding: 1em;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-size: cover; /* Esto ajustará la imagen para cubrir todo el espacio disponible */
  background-position: center; /* Esto centrará la imagen en el footer */
}




footer {
  background-color: #0a7c26;
  color: #fff;
  text-align: center;
  padding: 1em;
  position: fixed;
  bottom: 0;
  width: 100%;
}



.navbar {
  display: flex; /* Esto asegura que todos los elementos <a> estén en línea y se alineen horizontalmente */
  justify-content: flex-start; /* Opcional: alinea los elementos al inicio del contenedor */
}

.navbar a {
  position: relative;
  font-size: 16px;
  color: #fff;
  margin-right: 30px; /* Ajusta el margen como sea necesario */
  text-decoration: none;
  display: inline-block; /* Cambiado a inline-block para permitir dimensiones */
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -5px;
  border-radius: 5px;
  transform: translateY(10px);
  opacity: 0;
  transition: .5s ease;
}

.navbar a:hover::after {
  transform: translateY(0);
  opacity: 1;
}







nav ul {
  list-style: none;
}
nav ul li {
  display: inline;
  margin-right: 20px;
}








.cuadro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid #000000;
  background-color: #f8f8f8;
  margin-bottom: 20px;
}

.imagen {
  margin-right: 15px;
}

.descripcion1 {
  margin-bottom: 10px;
}

.descripcion2 {
  margin-bottom: 10px;
}

h2, h3 {
  text-align: center;
}

img {
  display: block;
  width: 120px;
  margin: auto;
}

.botones a {
border: 1px;
  display: inline-block;
  margin: 0;
  padding: 0;
  text-decoration: none;
  background-color: rgb(13, 9, 9);
  color: white;
  border-radius: 5px;
 position: relative;
}
.botones a {
  margin: 3px;
  padding: 3px;
  border: none;
  outline: none;
  color: #FFF;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 12px;
}

.botones a::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.botones a::before  {
  content: "";
  background: linear-gradient(
    45deg,
    #FF0000, #FF7300, #FFFB00, #48FF00,
    #00FFD5, #002BFF, #FF00C8, #FF0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height:  calc(100% + 4px);
  filter: blur(8px);
  border-radius: 5px; 
  animation: glowing 20s linear infinite;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
  opacity: 0;
}

@keyframes glowing {
  0% {background-position: 0 0;}
  50% {background-position: 400% 0;}
  100% {background-position: 0 0;}
}

/* hover */
.botones a:hover::before {
  opacity: 1;
  
}
.botones a:active:after {
  background: transparent;
}


.botones a:active {
  color: white;
  font-weight: bold;
}

section {
  padding: 20px;
}

 