* { 
    margin: 0%;
    padding:0%;
    
}
body {
  height: 100%;
  margin: 0;
  background-color: rgba(104, 116, 126, 0.333);
  position: relative;
  width: 100%;
} 
header{
  margin: 0;
  margin-bottom: auto;
  height: 100%;
  width: 100%;
  
}

nav{
display: flex;
  width: 100%;
  padding: 0px;
  background-color: rgb(92, 175, 243);
  height:140px;
 border-style: solid;color: #fcf8f8;
  
}
.logo img{
  border-style: solid;color: aliceblue;
    width: 100px;
    height: 100px;
    margin-top: 10px;
    border-radius: 50%;
    -webkit-border-radius: 25%;
    -moz-border-radius: 25%;
    -ms-border-radius: 25%;
    -o-border-radius: 25%;
}
.logo{
  width: 50%;
  margin-left: 70PX;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 25%;
  -ms-border-radius: 25%;
  -o-border-radius: 25%;
}



.menu-desplegable {
  width: 25%;
    position: relative; /* Para que la lista se posicione con respecto a este contenedor */
    display: inline-block; /* Para que el ancho se ajuste al contenido */
}

.btn-menu {
  margin-top: 20px;
  margin-right: 20px;
  margin-left: 180px;
    background-color: #696565;
    color: rgb(250, 239, 239);
    padding: 26px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    border-radius: 15px;
    border-style: solid;color: #fcf8f8;
}

.lista-items {
    display: none; /* Esta línea es la que oculta el menú por defecto */
    position: absolute;
    background-color: #554f4f;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgb(240, 239, 239);
    z-index: 1;
    list-style-type: none; /* Quita los puntos de la lista */
    padding: 0;
    margin: 0;
    margin-left: 275px;
    font-size: 20px;
}

.lista-items a {
    color: rgb(236, 230, 230);
    padding: 12px 16px;
    text-decoration: none;
    display: block; /* Para que cada ítem ocupe todo el ancho del menú */
}

.lista-items a:hover {
    background-color: #0429f8;
    color: #000000;
}

/* La clase .mostrar se agregará con JavaScript para hacer visible la lista */
.lista-items.mostrar {
    display: block;
}
.lista-items img{
  width: 80px;
  border-radius: 10px;
}



#videoFondo {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Coloca el video detrás del contenido */
  background-color: #0429f8;
}

 h1{
 font-family: 'Oswald', sans-serif;
  font-optical-sizing: auto;
  text-align: center;
 font-size: 105px;
 
 margin-top: 60px;
 text-shadow: 5px 5px 5px #ffffff;
  padding: 5px;
  color: #4b4a49;
}
a{
  text-decoration: none;
}
.red img{
  border-radius: 25%;
  width: 70px;
  height: 70px;
  margin-left: 50px;
  margin-top: 0;
  margin-bottom: 50px;
  -webkit-border-radius: 25%;
  -moz-border-radius: 25%;
  -ms-border-radius: 25%;
  -o-border-radius: 25%;
}
.ventas{
    border-style: solid;color: black;
    display: flex;
    margin-top: 10PX;
   margin-top: 90px;
    font-size: 50px;
    width: auto;
    justify-content: center;
  }
 .ventas h3{
  display: flex;
  background-color: aliceblue;
  padding: 0;
  width: 100%;
  font-size: 70px;
  color: rgb(43, 42, 41);

  justify-content: center;
 }
.cartel{
  width: 100%;
  height: 100%;
  margin-bottom: 0PX;
  border-style: solid;color: #8293f3;
  background-color: #000000;
}
.cartel img{
  width: 100%;
  height: 100%;
}

 
h5{
  background-color: aliceblue;
    text-align: center;
    margin-bottom: 0%;
   color: black;
   font-size: 20px;
   height: 40px;
}
  footer{
    border-style: solid;color: rgb(120, 184, 240);
    margin-top: 0px;
    margin-bottom: 0PX;
    background-color: rgb(0, 8, 14);
    padding: 0% ;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 140PX;
    
  }  
  @keyframes show {
    from {
      opacity: 0;
      scale: 25%;
    }
    to {
      opacity: 1;
      scale: 100%;
    }
  }
   