@charset "UTF-8";

body {
  max-width: 600px;
  min-width: 250px;
  margin: 0 auto;
  padding: 10px;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
  font-weight: normal;
}

.center-text {
  text-align: center;
}

.results-page {
  position: relative;
}

.result-page-thumbnail {
  border: 1px solid #000;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  max-width: 100%;
  height: auto;
}

.result-page-thumbnail:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.result-item {
  margin: auto;
  text-align: center;
}

.result-page-numbers {
  margin-top: 10px;
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.pagination a,
.pagination p {
  margin: 0 10px;
}

.pagination p {
  font-weight: bold;
}

.search-input {
  width: 100%;
  resize: vertical;
}

.search-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  gap: 5px;
}

.back-button {
  position: absolute;
  left: 10px;
  top: 10px;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
