#list-of-results {
  /* Remove default list styling */
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#list-of-results li {
  border: 1px solid #212121; /* Add a border to all links */
  margin-top: -1px; /* Prevent double borders */
  padding: 12px; /* Add some padding */
  border-radius: 3px;
  text-decoration: none; /* Remove default text underline */
  display: block; /* Make it into a block element to fill the whole list */
}

#list-of-results li:hover:not(.header) {
  box-shadow: 0 2px 4px 0 #3D3D3D;
}