
/* Fondo con imagen */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Courier New', monospace, bold;
  font-size: 25px;
    color: #fff;
  background-color: rgba(0, 0, 0, 0.6);

}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background-image: url('/img/logoc.jpg'); /* Reemplazá con tu imagen */
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.4);
}


/* Menú horizontal */
.menu {
  background-color: rgba(0, 0, 0, 0.8);
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  display: block;
  padding: 15px 25px;
  color: #00ff99;
  text-decoration: none;
  border-right: 1px solid #333;
}

.main-menu > li > a:hover {
  background-color: #222;
}

/* Submenú vertical */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 180px;
  z-index: 1000;
}

.submenu li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #333;
  white-space: nowrap;
}

.submenu li a:hover {
  background-color: #333;
}

/* Mostrar submenú al hacer hover */
.has-submenu:hover .submenu {
  display: block;
}
/* Galeria de imagenes */
.galeria {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  gap: 5px;
  padding: 5px,;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #444;
  top: 250px; 
  right: 20px; 
  left: 20px;
}

.imagen {
  width: 150px;
  height: 120px;
  overflow: hidden;
  border: 2px solid #333;
  box-shadow: 0 0 5px #000;
}

.imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.imagen img:hover {
  transform: scale(1.05);
}
.footer-retro {
  background-color: rgba(0, 0, 0, 0.85);
  color: #00ff99;
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #00ff99;
  box-shadow: 0 -2px 8px #00ff99;
  height: 150px; /* El alto de tu footer */
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 10;
}

.footer-retro a {
  color: #00ff99;
  text-decoration: underline;
}

.footer-retro a:hover {
  color: #fff;
}




