body {
  background-color: #113;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ddd;
  text-align: center;
}
.logo {
  width:250px;
  padding-top: 10px;
}
.card {
  background-color: #ddd;
  width:300px;
  height: 500px;
  border-radius: 20px;
}
.ask {
  color: black;
}
#search-input {
  width: 180px;
  height: 30px;
  text-align: center;
}
#search-button {
  background-color: purple;
  color: #ddd;
  border-radius: 20px;
  width: 80px;
  height: 36px;
}
.name-id {
  color: black;
  text-align: left;
  margin: 5px;
  padding-left: 10px;
}
#pokemon-name, #pokemon-id {
  display: inline;
}
.weight-height {
  color: black;
  text-align: left;
  margin: 5px;
  padding-left: 10px;
  font-size: 14px;
}
#weight, #height {
  display: inline;
}
#picture {
  height: 120px;
  margin: 0;
  padding: 0;
}
#picture img {
  position: relative;
  width: 130px;
  z-index: 0;
  margin: 0;
  padding: 0;
  left: 75px;
  top: -10px;
}
#types {
  background-color: purple;
  color: #ddd;
  font-weight: bold;
  width: 170px;
  height: 20px;
  margin: 0 0 0 9px;
  padding: 0;
  border: 1px solid black;
}
.base-stats {
  display: grid;
  width: 280px;
  height: 200px;
  margin-left: 5px;
  margin-top: 5px;
  grid-template-columns: auto auto;
}
.left {
  background-color: purple;
  width: 170px;
  height: 20px;
  border: 1px solid black;
  margin: 4px;
  font-weight: bold;
}
.right {
  background-color: purple;
  width: 100px;
  height: 20px;
  border: 1px solid black;
  margin: 4px;
  font-weight: bold;
}