/* estilos.css */

body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('fondo.png'); /* o 'fondo.jpg' si esta en el mismo lugar */
  background-repeat: repeat;
  background-position: 100%;
  background-attachment: fixed;
  }

h1 {
  color: #FE2E9A;
  text-align: center;
}

h2 {
color: #bf00ff;
text-align: left; 
}

/* Estilo para la lista principal */
.menu-principal {
  display: flex;
  list-style: none;
  justify-content: flex-start;
  padding: 10px;
  border-radius: none;
}

.menu-principal li a {
  display: inline-block;
  padding: 30px 80px;
  margin: 5px;
  background-color: #f3f781;
  font-weight: bold;
  color: #ff4000;
  text-decoration: none;
  border: 2px dotted #ffbf00;
  border-bottom: none;
  border-radius: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.menu-principal li a:hover {
  background-color: #fe2e9a;
  font-weight: bold;
  color: #bf00ff;
  border-color: #fe2e9a;
}

/* Estilo para el submenu de productos */
.submenu-productos {
  display: grid;
  list-style: none;
  justify-content: left;
  padding: 10px;
  border-radius: none;
  margin-top: 20px;
}

.submenu-productos li a {
  display: block;
  padding: 30px 70px;
  margin: 5px;
  background-color: #f5a9e1;
  font-weight: bold;
  color: #bf00ff;
  text-decoration: none;
  border: 2px dotted  #fe2e9a;
  border-bottom: none;
  border-radius: none;
  text-align: right;
  transition: background-color 0.3s ease;
}

.submenu-productos li a:hover {
   background-color: #ffbf00;
  font-weight: bold;
  color: #bf00ff;
  border-color: #ffbf00;
}
