.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 5px 10px;
  background-color: #fff;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0 0 5px #ff91f9, 0 0 10px #ffbcff, 0 0 15px #270023, 0 0 20px #76ebf3;

}

@keyframes neon2-border {
  0% {
    box-shadow: 0 0 5px #ffbcff, 0 0 10px #ffbcff, 0 0 15px #ffbcff, 0 0 20px #ffbcff;
  }
  25% {
    box-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 15px #ff00ff, 0 0 20px #ff00ff;
  }
  50% {
    box-shadow: 0 0 5px #76ebf3, 0 0 10px #76ebf3, 0 0 15px #76ebf3, 0 0 20px #76ebf3;
  }
  75% {
    box-shadow: 0 0 5px #270023, 0 0 10px #270023, 0 0 15px #270023, 0 0 20px #270023;
  }
  100% {
    box-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 15px #00ff00, 0 0 20px #00ff00;
  }
}

.search-box input {
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  width: 80%;
  border-radius: 25px 0 0 25px;
}

.search-box button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  font-size: 16px;
  border-radius: 0 25px 25px 0;
}

.search-box button i {
  font-size: 20px;
  color: #333;
}

.linkhome {
  width: 80%;
  margin: auto;
}

.linkhome h2 a {
  text-decoration: none;
  color: rgb(88, 88, 88);
  font-size: large;
  font-weight: 300;
}

.linkhome h3 {
  text-align: center;
  color: black;
    font-weight: bolder;
  
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .search-box {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .search-box {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .search-box {
    width: 95%;
  }
  
  .search-box input {
    width: 70%;
  }

  .search-box button {
    width: 30%;
    font-size: 14px;
    padding: 10px 5px;
  }
}
