@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  background: #efefbb;
  background: linear-gradient(to right, #d4d3dd, #efefbb);
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
}

h1 {
  letter-spacing: 3px;
}

h1 img {
  margin: 0 12px;
}

.poke-container {
  display: flex;
  flex-wrap: wrap;
  align-items: space-between;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

.pokemon {
  background-color: #eee;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(100, 100, 100, 0.5);
  margin: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.pokemon:hover {
  transform: scale(1.1);
}

.pokemon .img-container {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  width: 120px;
  height: 120px;
  text-align: center;
}

.pokemon .img-container img {
  max-width: 90%;
  margin-top: 20px;
}

.pokemon .info {
  margin-top: 15px;
}

.pokemon .info .number {
  background-color: rgb(236, 232, 133);
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
}
