body {
  font-family:"Pixelify Sans", sans-serif;
  font-size: 32px;
  background-color: rgb(83, 84, 84) !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  font-family:"Pixelify Sans", sans-serif;
  font-size: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

#content {
  display: flex; /* Aktiviert das Flexbox-Layout */
  flex-wrap: wrap; /* Ermöglicht Zeilenumbruch */
  gap: 16px; /* Abstand zwischen den Pokémon */
  justify-content: space-evenly; /* Pokémon gleichmäßig verteilen */
  padding: 16px; /* Innenabstand des Containers */
}

.main-container {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border: none;
  margin: 16px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
  filter: drop-shadow(2px 4px 6px black);
}

.main-container:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.title {
  padding-right: 8px;
  padding-left: 8px;
  background-color: rgb(121, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.types {
  height: 40px;
  background-color: rgb(49, 49, 49);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.types img {
  filter: drop-shadow(0px 0px 3px);
  width: 30px;
  height: auto;
  margin-right: 8px;
  margin-left: 8px;
}

h1 {
  position: absolute;
  right: 160px;
}

h4:first-letter {
  text-transform: uppercase;
}

header {
  min-height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(121, 0, 0);
  color: rgb(238, 236, 236);
}

.pkmn-logo {
  filter: drop-shadow(2px 4px 6px black);
  width: 300px;
  height: auto;
}

header input {
  margin-right: 16px;
}

header h2 {
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

header img {
  width: 70px;
  margin-left: 24px;
  margin-right: 16px;
}

.headerlogo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  margin-bottom: 24px;
  filter: drop-shadow(2px 4px 4px black);
}

footer {
  display: flex;
  background-color: rgb(121, 0, 0);
  justify-content: flex-start;
  flex-direction: column;
  min-height: 30px;
}

footer img {
  width: 50px;
  height: 60px;
  margin-right: 16px;
  margin-bottom: 2px;
}
