body {
    font-family: Helvetica, Arial, sans-serif;
}
h1 {
    font-size: 40px;
    text-align: center;
}
div {
    width: 100%; 
}
img[usemap] {
    border: none;
    height: auto;
    max-width: 100%;
    width: auto;
}

img{
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.modal {

   display: none;
   position: fixed;
   z-index: 1;
   padding-top: 200px;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   text-align: center;
   overflow: auto;
   background-color: rgb(0, 0, 0);
   background-color: rgba(0, 0, 0, 0.4);
   
    
  
  }
  
  
  .modal-content {
  
    margin: auto;
    display: block;
    width: 90%;
    /*max-width: 900ox;*/
   
  }

  @media screen and (max-width: 380px){
    .modal-content {
      width: 100%;
    }
  }
  
  
  .close {
  
    color: #aaa;
  
    /*float: right;*/
  
    font-size: 30px;
  
    font-weight: bold;

    position: absolute;
  top: 15%;
  left: 95%;
  margin-top: -8px;
  margin-left: -8px;
  
  }
  
  
  .close:hover,
  
  .close:focus {
  
    color: #000;
  
    text-decoration: none;
  
    cursor: pointer;
  
  }

 /* area.zoom {
    width: 350px;
    height: 200px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}
 
.transition {
    -webkit-transform: scale(1.8); 
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    transform: scale(1.8);
}*/


.container {
  position: relative;
  width: 50%;
}

.area {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.container:hover .area {
  opacity: 0.3;
}

.container:hover .middle {
  opacity: 1;
}

.text {
  background-color: #04AA6D;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}