 body {
  font-family: 'Arial', sans-serif;
  background-color: #c9c7c733;
  margin: 0;
  padding: 0;
  background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
  animation: gradientAnimation 10s infinite alternate;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
@media (max-width: 768px) {
    body {
      /*background: linear-gradient(135deg, #ff9933, #ffffff, #138808);*/
         background: linear-gradient(90deg,  #ff993394, #ffffff, #13880891);

        }
}
.header {
  
  color: #fff;
  text-align: center;
  /* padding: 20px 0; */
  font-size: 35px;
  font-family:'Kavivanar', sans-serif ;
  text-shadow: 1px 1px 2px green;
}

@media(max-width: 600px) {
  .header{
    font-size: 28px;
  }
}

.form-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#hello{
  color: #e62e4d;
}
form label {
  display: block;
  font-size: 18px;
  margin: 10px 0;
}

form input[type="text"], form input[type="date"] {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  display: block;
  background-color: #e62e4d;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #d81d3f;
}

.result{
  margin-top: 110px;
  margin-left: 10px;
  margin-right: 10px;
}

#results {
  max-width: 800px;
  margin: 20px auto;
  display: grid;
 grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.bus-info {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  cursor: pointer;
  line-height: 20px;
}

.bus-info h2 {
  font-size: 24px;
  color: #e62e4d;
  margin: 0;
  font-family:'Kavivanar', sans-serif ;
  text-shadow: 1px 1px 2px #8a3838;
  text-align:center;
}

@media(max-width: 640px) {
  .bus-info h2 {
    font-size: 22px;
  }
}

@media (max-width: 740px) {
  .bus-info {
    font-size: 24px;
  color: #e62e4d;
  margin: 0;
     position: relative;
      width: 100%;
      top: 0;
      left: 0;
      border-bottom: 1px solid rgba(256, 256, 256, .1);
     line-height: 15px;
      }
      }

.bus-info p {
  font-size: 16px;
  color: green;
  margin: 10px 0;
  font-weight: bold;
  font-family:'Kavivanar', sans-serif ;
}

.no-buses {
  text-align: center;
  font-size: 20px;
  color: #e62e4d;
  margin-top: 0px;
  font-weight: bold;
  display: ruby;
  font-family: 'Kavivanar', sans-serif;
}

@media(min-width: 961px) {
  .no-buses{
    width: 50vw;
  }
}

@media(max-width: 640px) {
  .no-buses{
    display: block;
  }
}

@media screen and (min-width: 641px) and (max-width:960px) {
  .no-buses {
      width: 90vw;
  }
}

.hello
{
  color: black;
}

.back-link {
  display: inline-block;
  background-color: #e62e4d;
  color: #fff;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease;
   /* margin-top: 20px;  */
 
}
.back-link:hover {
  background-color: #d81d3f;
}


b{
  font-style: initial;
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
}


.Grow{
  text-align: center;
  font-size: 20px;
  color: black;
  font-weight: bold;
  font-style: italic;
  margin-top: 50px;
}

.bus-info p i{
  margin-right: 10px; 
  font-size: 16px;   
  color: #432b86c9;
}

