.thumbnail {
    width: 400px;
    height: 300px;
    cursor: pointer;
    margin: 10px;
    transition: transform 0.3s ease;
  }
  

  .thumbnail2 {
    width: 300px;
    height: 200px;
    cursor: pointer;
    margin: 10px;
    transition: transform 0.3s ease;
  }

  .thumbnail:hover {
    transform: scale(1.2);
  }
  
  .thumbnail2:hover {
    transform: scale(1.2);
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
  }
  
  .modal-content {
    display: block;
    margin: 60px auto;
    max-width: 90%;
    max-height: 80%;
    box-shadow: 0 0 30px black;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }