* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "PT Sans Narrow", sans-serif;
  background-image: url(./43774fb3b7eecc24a4ae700260b206f0.jpg);
  object-fit: cover;
}

.poke-img-head {
  width: 700px;
  height: 110px;
  object-fit: cover;
}

.pokemon-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.pokemon-list-container {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.poke-btn {
  display: grid;
  padding: 15px 5px;
}

.poke-btn button {
  width: 100px;
  padding: 10px;
  border: none;
  background-color: red;
  color: white;
  transition: 0.3s ease-in-outsss;
}

.poke-btn button:hover {
  background-color: white;
  color: black;
  text-decoration-line: black 1px solid;
}

.poke-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.span-poke {
  text-transform: uppercase;
}

.poke-prev {
  padding: 15px;
  background-color: red;
  color: white;
  border: none;
  text-transform: uppercase;
}

.poke-prev:hover {
  background-color: white;
  color: black;
}

.poke-next {
  padding: 15px;
  background-color: red;
  color: white;
  border: none;
  text-transform: uppercase;
}

.poke-next:hover {
  background-color: white;
  color: black;
}

.poke-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
}

.fix-poke {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
}

.pokemon-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 100%;
}
.poke-img-head {
  display: none;
}

@media screen and (max-width: 800px) {
  .pokemon-list-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(20, 1fr);
  }
}
