body {
  font-family: "Montserrat", sans-serif;
  color: #2e2f42;
}

h2 {
  margin: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.container {
  max-width: 440px;
  padding: 0 24px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  padding: 8px 15px;
  text-decoration: none;
  color: #4e75ff;
  font-size: 1.1em;
  font-weight: 500;
  border: 1px solid #4e75ff;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 25px;
  will-change: transform; 
}

.back-link:hover {
  background-color: #4e75ff;
  color: #ffffff;
  border-color: #4e75ff;
  transform: translateY(-2px);
}

.back-link:active {
  background-color: #2c58e0;
  border-color: #2c58e0;
  transform: translateY(0);
}

.categories-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.categories-item {
  border-radius: 8px;
  padding: 16px;
  background-color: #f6f6fe;
}

.categories-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.names-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.names-item {
  border: 1px solid #808080;
  border-radius: 4px;
  padding: 8px 16px 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
