.myimg {
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
}
.myimg:hover {
    opacity: 0.6;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top:80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}
.modal-content {
  display: block;
  width: 80%;
  max-width: 740px;
  left:24%; 
  position:fixed;
}
.modal-content {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.close:hover,
.close:focus {
  color:red;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width:980px){
  .modal-content {
    margin:15% auto;
    width:85%;
    left:6%;
    top:12%;
    padding:5px;
}
.close {
    font-size:60px;
    left:85%;
}
}
@media screen and (max-width:980px) {
    #fix {
        width:100%;
        margin:0px;
    }
}
@media screen and (max-width:980px) {
    .pagination {
        width:100%;
    }
}


