#file-input{
	width: 100%;
	height: 100%;
	content: "hola";
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  line-height: 100px;
  z-index: 10; /* Esto asegura que la superposición esté encima */
}

.overlay2 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  line-height: 100px;
  z-index: 10; /* Esto asegura que la superposición esté encima */
}

.containersuper {
  width: 100%;
  height: 300px;
  background-color: #fff;
  position: relative;
}