body {
  background-image: url("./assets/img/dark-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: "poppins";
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

header {
  height: 120px;
  background-color: rgb(19, 19, 19);
  display: flex;
  align-items: center;
  padding-left: 30px;
  width: 100%;
}

.header-logo {
  width: 240px;
}

#content {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  padding: 48px;
  max-width: 1440px;
}

.pokemon-card {
  width: 230px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  text-align: center;
  color: white;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 4px solid #0000008f;
}

.pokemon-card:hover {
  transform: scale(1.05);
}

.card-header {
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  font-size: 14px;
  text-transform: capitalize;
}

.card-body {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
}

.pokemon-image {
  width: 175px;
  height: auto;
  transition: width 0.3s ease;
}

.pokemon-card:hover .pokemon-image {
  width: 200px;
}

.card-footer {
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.type-info {
  display: flex;
  align-items: center;
}

.type-icon {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

.type-name {
  font-size: 14px;
  text-transform: capitalize;
}
