.poke-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 60px 0px;
}

.poke-container {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 300px;
  align-items: center;
  justify-content: top;
  border-radius: 30px;
  border: none;
  box-shadow: 2px 2px 6px #8596a65b;
  cursor: pointer;
}

.poke-container:hover {
  width: 310px;
  height: 310px;
  box-shadow: 4px 4px 10px #8596a65b;
  cursor: pointer;
  margin: -10px -5px;
}

.poke-card-bg {
  display: flex;
  width: 100%;
  height: 100%;
  font-family: "roboto_monoregular";
  font-size: 60pt;
  color: #ffffff39;
  align-items: top;
  justify-content: flex-end;
  margin-top: -30px;
}

.poke-card-info {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 300px;
  background-color: white;
  border-radius: 30px;
  gap: 15px;
  margin-top: -80px;
}

.poke-type-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 30px;
}

.poke-type-icon {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
}

.poke-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 10;
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-top: -140px;
}

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

@media (max-width: 380px) {
  .poke-container {
    width: 250px;
    height: 250px;
  }

  .poke-card-bg {
    font-size: 50pt;
  }
}
