#form {
  margin: auto;
}

#form h2 {
    font-size: 1.6rem;
}

#form hr {
    background-color: #000000;
    width: 40%;
}

/******** Mobile Devices ********/
@media (max-width: 767px) {
  #form {
    width: 90%;
  }
}

/******** Tablet Devices ********/
@media (min-width: 768px) and (max-width: 991px) {
  #form {
    width: 80%;
  }
}

/******** Desktop Devices ********/
@media (min-width: 992px) {
  #form {
    width: 60%;
  }
}

.searchTerm {
    width: 95%;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 1%;
    border-radius: 5px 5px 5px 5px;
    outline: none;
    font-size: 15px;
}