@media(max-width:768px){
   input{
      background-color: transparent;
      box-shadow: 0 0 8px greenyellow;
      border: none;
      width: 200px;
      height: 30px;
      color: greenyellow;
      font-size: 18px;
    }
    .input-div{
      margin-top: 5px;
      margin-left: 10px;
    }
    header h3{
      color: greenyellow;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 17px;
      text-align: center;
      margin-left: 0;
    }
    .search{
      background-color: transparent;
      color: gray;
      border: none;
      box-shadow: 0 0 8px greenyellow;
      height: 30px;
      width: 50px;
      margin-bottom: 5px;
      font-size: 18px;
    }
    .js-movie {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap:5px;
      margin-top: 20px;
      margin-left: 10px;
    }
    .gallery img {
      height: 160px;
      width: 110px;
      border-radius: 10px;
      box-shadow: 0 0 10px lime;
      transition: transform 0.3s ease;
    }
    .gallery{
      margin-bottom: 10px;
    }
    

   
   
}