.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}

h1 {
  text-align: center;
  padding: 15px 30px;
  font-size: 2.5rem;
  border-radius: 10px;
  margin-top: 50px;
  border: 5px solid transparent;
  cursor: default;
  border: 5px solid greenyellow;
  box-shadow: 0 0 10px 2px greenyellow;
}

.title-container,
.title-wrapper {
  height: 80px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn {
  background-color: black;
  color: greenyellow;
  font-weight: 700;
  padding: 5px;
  border: 3px solid greenyellow;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.btn:hover {
  background: rgba(172, 255, 47, 0.5);
  color: black;
  border: 3px solid greenyellow;
  transform: scale(0.8, 0.8);
  box-shadow: 0 0 10px 2px greenyellow;
}

.collection,
.favorites {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 20px 0;
}

.character {
  width: 300px;
  padding: 20px;
  border: 3px solid white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 20px;
  transition: 0.2s ease-in-out;
}
.character:hover {
  transform: scale(1.1, 1.1);
  border: solid greenyellow;
  cursor: pointer;
  box-shadow: 0 0 10px 2px greenyellow;
}

.character p {
  letter-spacing: 1px;
}

.img-wrapper {
  width: 100%;
  height: 300px;
}

.character img {
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 10px;
  border: 3px solid white;
}

.collection-title,
.favorites-title {
  color: white;
  cursor: default;
}

.collection-count,
.favorites-count {
  cursor: default;
}
