

.bodyhover{
  padding: 0;
  margin: 0 ;
  box-sizing: border-box;
  /*height: 100vh;*/
}

.container03{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: aliceblue;
  position: relative;
  width: 350px;
  height: 500px;
  cursor: pointer;
  overflow: hidden;
  margin: 30px;
  border-radius: 10px;
}


.container03:hover .textohover{
  visibility: visible;
}

.container03:hover img{
  transform: scale(1.1);
  transition: .5s ease;
}

.image{
  width: 300px;
  height: 400px;
}

.imagenhover img{
  width: 350px;
  height: 500px;
  transition: .5s ease;
}

.textohover{
  font-size: 1.2rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .9;
  background-color: #410099;
  width: 350px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  visibility: hidden;
  padding: 15px;
}

.textohover p{
  color: #ffffff !important;
}

.textohover h2{
  margin-bottom: 1.2rem;
  color: #ffffff !important;
}
