 
body {
  font-family: Arial, sans-serif;
}

h1 {
  text-align: center;
  margin-top: 50px;
}

#search-container {
  text-align: center;
  margin-top: 50px;
}

#search-box {
  font-size: 16px;
  height: 26px;
  line-height: 26px;
  width: 300px;
}

#search-btn {
  height: 26px;
  font-size: 16px;
}

#results-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px; /* Adjust this value based on the actual combined width of your search box and button */
  margin-left: auto;
  margin-right: auto;
}

.box {
  margin-bottom: 0.5rem !important;
  padding: 0;
  text-align: center;
  transition: box-shadow 0.3s ease; /* Smooth transition for the shadow */
  width: 100%;
}

.box:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Adds shadow to make the box 'pop' */
}

.box a {
  display: block;
  padding: 0.5rem;
}

