body {
  margin: 0;
  background: black;
  overflow-y: auto;
  height: auto;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 5s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.stars {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
input{
  background-color: transparent;
  box-shadow: 0 0 8px greenyellow;
  width: 500px;
  height: 40px;
  color: greenyellow;
  font-size: 20px;
  border: none;
}
.input-div{
  margin-top: 10px;
  margin-left: 20px;
}
.search{
  background-color: transparent;
  color: gray;
  border: none;
  box-shadow: 0 0 8px greenyellow;
  height: 40px;
  width: 100px;
  margin-bottom: 5px;
  font-size: 20px;
}
header h3{
  color: greenyellow;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  text-align: left;
  margin-left: 20px;
}
.section1{
  display: flex;
}
.js-movie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:5px;
  margin-top: 20px;
  margin-left: 10px;
}

.gallery img {
  object-fit: cover;
  width: 160px;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 0 10px lime;
  transition: transform 0.3s ease;
}
.gallery{
  -webkit-animation-name: x;
  -webkit-animation-duration: 3s;
  animation-name: x;
  animation-duration: 3s;
  margin-bottom: 20px;
}
@keyframes x{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

.gallery img:hover {
  transform: scale(1.05);
}
.p1{
  color: greenyellow;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
