/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } */
  
  /* section {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  } */
  
  .thumbnail {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 10px 5px;
    cursor: pointer;
    overflow: hidden;
  }
  
  .thumbnail::before {
    content: "Click to see more";
    display: block;
    position: absolute;
    top: 390px;
    bottom: 0;
    background: #222;
    color: #fff;
    font-family: monospace;
    font-size: 15px;
    padding: 20px 10px;
    transition: top 0.3s ease-in-out;
  }
  
  .thumbnail:hover::before {
    top: 350px;
  }
  
  /* img {
    width: 100%;
  } */
  
  .popup {
    position: fixed;
    top: 50%;
    transform: translate(0px, -50%);
    /* bottom: 0; */
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    cursor: pointer;
    overflow-y: scroll;
    height: 600px;;
  }
  
  .popup.hidden {
    display: none;
  }
  
 

  @media only screen and (max-width: 2200px) {
    .popup img {
      display: block;
      width: 30%;
      /* height: 75%; */
      margin: 100px auto;
    }
  
    .popup p {
      display: block;
      width: 30%;
      margin: 100px auto;
      color:white;
    }
  }

  @media only screen and (max-width: 600px) {
    .popup img {
      display: block;
      width: 75%;
      /* height: 75%; */
      margin: 100px auto;
    }
  
    .popup p {
      display: block;
      width: 75%;
      margin: 100px auto;
      color:white;
    }
  }



  