@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');



 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #950D0D;
  background-image: url('https://www.pngitem.com/pimgs/m/2-25193_pokemon-ball-transparent-background-transparent-background-pokeball-png.png');
  background-repeat: repeat-y;
  background-position: center;
  color: white;
  font-family: 'Bebas Neue', cursive;
}

.container{
  display: flex;
  flex-wrap: wrap;
  min-height: 650px;
  justify-content: center;
  gap: 25px;
  padding: 15px;
  margin-top: 25px;
  background-color: hsl(0, 5%, 2%, 60%);
}

.card {
  background-image: url('https://www.gsvservices.org/wp-content/plugins/LayerSlider/sampleslider/circle.png');
  height:300px;
  width: 225px;
  display: flex;
  flex-driection: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 25px;
  border-radius: 15px;
  border: 3px solid white;
  box-shadow: 3px 3px 8px hsl(0, 20%, 0%, 100%);
  

  
}


img{
  margin: 20px 0;
  align-self: center;
  width: 120px;
  height: 120px;
}



.card-info{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  font-size: 25px;
  line-height: 30px;
}

.grass {
  background-color: #69c242;
}

.fire {
  background-color: 
#ff734d
;
}

.water {
  background-color: #239ce8;
}

.bug {
  background-color: #bdeb34;
}

.dragon {
  background-color: #7a71c7;
}

.electric {
  background-color: #ffee30;
}

.fighting {
  background-color: #d1671b;
}

.flying {
  background-color: #95addb;
}

.ghost {
  background-color: #5d559e;
}

.ground {
  background-color: #e6bd45;
}

.ice {
  background-color: #bdf8ff;
}

.normal {
  background-color: #e8e5da;
}

.poison {
  background-color: 
#8e4ca8
;
}

.psychic {
  background-color: #eb75ac;
}

.rock{
  background-color: #d4cd92;
}


p.num {
  font-weight: bold;
  text-shadow: 2px 2px 5px black;
}

p.name {
  text-shadow: 2px 2px 5px black;  
}

header{
  text-align: center;
  font-size: 55px;
  background: black;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}


.sig {
  text-align: right;
  font-size: 25px;
  padding: 10px;
  color: black;
}

@keyframes bounce {
   0% {transform: skewY(-25deg);}
   25% {transform: scale(3);}
   50% {transform: scale(3);}
  100% {transform: skewY(-25deg);}
}

div.card:hover {
  z-index: 2;
  animation-name: bounce;
  animation-iteration-count: 1;
  animation-duration: 5.5s;
}


