* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapp {
  width: 100%;
  position: relative;
}

.wrapp img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  /* display: none; */
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s;
}

.prev {
  color: #000;
  position: fixed;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  /* border: 1px solid; */
  padding: 5px 20px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
}

.next {
  color: #000;
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  /*  border: 1px solid; */
  padding: 5px 20px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
}

.fa {
  color: black;
}

.text {
  padding: 10px;
  background: rgba(255, 255, 255, 0.35);
  border: 1xp solid #000;
  position: fixed;
  bottom: 5%;
  left: 5%;
  right: 5%;
}