.midden {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: center;
  background-color: red;
}

.box {
  background-color: blue;
}

.box2 {
  border-radius: 5px;
  width: 192px;
  heigth: 108px;
}

.box2 img {
  width: 192px;
  heigth: 108px;
}

.box2 p {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.box2:hover .box2 p {
  display: 1;
}
