/**
 * Some common styles used across all pages
 */

nav {
  display: flex;
}

a {
  width: 140px;
}
* {
  box-sizing: border-box;
}

/* Style the search field */
form.search input[type="text"] {
  padding: 10px;
  font-size: 17px;
  float: left;
  width: 78%;
  background: #f1f1f1;
}

/* Style the submit button */
form.search button {
  float: left;
  width: 20%;
  padding: 10px;
  background: #f1f1f1;
  color: rgb(5, 5, 5);
  font-size: 17px;

  cursor: pointer;
}

form.search button:hover {
  background: #0b7dda;
}

/* Clear floats */
form.search::after {
  content: "";
  clear: both;
  display: table;
}
