*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root{
  --white-1: #ffff;
  --white-2:#eff3ff;
  --black-1: #101010;
  --gray-2: #404060;

  
}

body{
  background-color: var(--white-2);
}

.container{
  width: 350px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

#card{
  position:relative;
  width: 100%;
  padding: 30px 20px;
  box-shadow: 0 20px 30px rgba(0,0, 0, .15);
  border-radius: 10px;
}

#card img{
  display: block;
  width: 250px;
  max-height: 300px;
  position: relative;
  margin: 20px auto;
}

.hp{
  width: 80px;
  background-color: var(--white-1);
  text-align: center;
  padding: 8px 0;
  border-radius: 30px;
  margin-left: auto;
  font-weight: 400;
}

.poke-name{
  text-align: center;
  font-weight: 600;
}

.types{
  display: flex;
  justify-content: space-around;
  margin: 20px 0 40px 0;
}

.hp span,
.types span{
  font-size: 12px;
  letter-spacing: 0.4px;
  font-weight: 600;
}

.types span{
  padding: 5px 20px;
  border-radius: 20px;
  color: var(--white-1);
}

.stats{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-left: 33px;
  text-align: center;
}

.stats p{
  color: var(--gray-2);
}

#btn{
  display: block;
  padding: 15px 60px;
  font-size: 18px;
  background-color: var(--black-1);
  color: var(--white-1);
  position: relative;
  margin: 30px auto;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s;
}

#btn:hover{
  box-shadow: 0 10px 30px rgba(62, 96, 249, 0.519);
}