#hny{
  display: grid;
  position:absolute;
  height:100%;
  width:100%;
  top:0%;
  left:0%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  place-items: center;
}
#hny button{
  position:absolute;
  top:10%;
  right:10%;
  color:#fff;
  background-color: transparent;
  border:none;
  outline:none;
  font-size: 3rem;
}
#hny .zoom-in-out-box img{
  transition:5s;
  display: flex;
  height:80%;
  width:60%;
}
.zoom-in-out-box {
  margin: 24px;
  width: 40%;
  height: 50%;
  background-image: url("../images/hny.jpeg");
  background-size: 100% 100%;
  animation: zoom-in-zoom-out 2s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
.slideshow-container {
  width: 100%;
  height: 400px;
  position: relative;
  margin-top: 56px;
  margin-bottom: 56px;
}

.mySlides {
  display: none;
  height: 500px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@media screen and (max-width:500px){
  #hny .zoom-in-out-box{
    width:50%;
    height: 30%;
  }
}