#stateImg {
  border-radius: 0px;
  transition: 0.6s;
}


.modal {
  display: none;
  position: fixed; 
  z-index: 1; 
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.9); 
  transition: 0.6s;
}

.image-container img{
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 420px;
  clear:both;
  text-align:center;
  border-radius: 3px;
  transition: 0.6s;
}


#state-details {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 420px;
  text-align: left;
  font-size:14px;
  color: #fff;
  padding: 30px;
  background-color:#3768ad;
  transition: 0.6s;
}
#stateCaption{
	font-size:20px;
	margin-bottom:8px;
}
#stateCities{margin-top:15px;}

/* Add Animation */
#stateImg, #stateCaption {  
  animation-name: zoom
  animation-duration: 0.8s;
  transition: 0.6s;
}

@keyframes zoom {
  from {transform: scale(0.1)} 
  to {transform: scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 50px;
  right: 50px;
  color: #f1f1f1;
  font-size: 45px;
  font-weight: bold;
  transition: 0.3s;
}

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

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}