/* Non-static style applied to the example diapositive */

.bombilla {
  margin-top: 150px;
  height: 120px;
}


/* Tablets layout */
@media only screen and (min-width:768px) and (max-width:1024px) {
  .bombilla {
    height: 120px;
  }
}

/* Mobile layout */
@media only screen and (max-width:767px) {
  .bombilla {
    height: 120px;
  }
}
