.modal{
  display: none;
  position:"fixed";
  z-index: 1;
  padding: 5px,0;
  left:0;
  top:0;
  width:100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);

}
.modal-content{
position: relative;
margin: auto;
padding: 0;
width: 80%;
max-width: 1000px;
border: none;
background-color: transparent;
}  
.my-slides{
text-align: center;

}
.portrait-image{
height: 98vh;

}
.landscape-image{
  width: 76vw;
}

.close{
  color:white;
  position:absolute;
  top: 10px;
  right: 25px;
  font-size: 48px;
  font-weight: bold;
  transition: 0.3s ease;

}
.close:hover,.close :focus{
  color: white;
  text-decoration: none;
  cursor: pointer;

}
.title{
  color: white !important;
  margin-top: 10px;
  
}
/*.prev,.next{
  cursor: pointer;
  position:absolute;
  top:50%;
  width: auto;
  margin-top: 50px;
  color:white !important;
  font-weight: bold;
  font-size: 3em;
  transition: 0.6 ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
.next{
  right: 0;
  border-radius: 3px 0 0 3px;
}
.next:hover ,.prev:hover{
  background-color: rgba(0, 0, 0, 0.8);
}*