
/* CSS Document */

 
 @media only screen and (max-width: 700px) {
     .popup {
         display: none;
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 9999;
     overflow: auto;
     width: 100%;
     
    }
      .popup-content {
     text-align: center;
          margin-top: 50%;
          margin-bottom: 50%;
      
}
     .popup img {
         max-width: 400px;
    }
     .close-button {
     background-color: #363636;
     color: white;
     border: none;
     margin-top: 10px;
     padding: 10px 20px;
     border-radius: 5px;
     cursor: pointer;
     margin-bottom: 15px;
     font-weight: bold;
         width: 400px;
}
 
 
}

 @media only screen and (min-width: 700px) {

 .popup {
     display: none;
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 9999;
     overflow: auto;
     width: 100%;
     
}
 .popup-content {
     text-align: center;
     margin-top: 50%;
          margin-bottom: 50%;
      
}

 .popup-button {
     text-align: center;
      
}
 .close-button {
     background-color: #363636;
     color: white;
     border: none;
     margin-top: 10px;
     width: 500px;
     padding: 10px 20px;
     border-radius: 5px;
     cursor: pointer;
     margin-bottom: 15px;
     font-weight: bold;
}
}