body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
} .container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0, 0.1);
} h1 {
  text-align: center;
} ul {
  list-style-type: none;
  padding: 0;
} li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
} .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
} button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background-color: #007BFF;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 5px;
} button:hover {
  background-color: #0056b3;
} button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
} #page-numbers {
  display: flex;
  margin: 0 10px;
} .page-number {
  padding: 10px;
  cursor: pointer;
} .page-number.active {
  font-weight: bold; color: red;
} .thing {
  width: 250px; height: 250px;
  background-repeat: no-repeat; background-position: center; background-size: cover;
  color: white; box-shadow: inset 0px 50px 20px -10px rgba(0,0,0, 0.75);
} .thing-name {
  font-weight: bold;
  text-align: center;
  overflow: hidden; white-space: nowrap;
  text-overflow: ellipsis;
  cursor: help;
} #thing-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}