body {
  font-family: 'Poppins', sans-serif;
}

.nav-header {
  display: flex;
  align-items: center;
}

.hidden {
  display: none !important;
}

.column-half {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.poke-picture {
  align-items: center;
}

.poke-text > p {
  width: 100%;
}

header {
  background-color: #cb2424;
  width: 100%;
  height: 90px;
  border-bottom: 20px solid black;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.search-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}

.button,
input,
.poke-img,
.pokemon-description,
.form-button {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.button {
  background: rgba(203, 36, 36, 0.5);
  width: 200px;
  height: 70px;
  margin: 5px auto;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  transform: scale(1);
  transition: transform 0.5s;
}

.form-button {
  height: 30px;
  background: rgba(203, 36, 36, 0.5);
  font-family: 'Poppins', sans-serif;
}

.button:hover {
  transform: scale(1.025);
}

.button:active,
.form-button:active {
  transform: translateY(0.1rem) translateX(0.1rem);
}

input {
  width: 70%;
  height: 30px;
  border: 2px solid #000;
  margin: 10px;
}

form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.poke-img {
  max-width: 90%;
  border: 4px solid black;
  border-radius: 5px;
}

.poke-img,
.pokemon-description {
  background-color: rgb(236, 236, 236);
}

.pokemon-details {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}

.pokemon-name {
  font-size: 38px;
  width: 100%;
  height: auto;
  margin: 5px 0 5px 0;
  text-align: center;
}

.poke-weight,
.poke-id {
  font-size: 20px;
  width: calc(99% / 3);
  margin: 0;
  text-align: center;
}

.pokemon-description {
  width: 100%;
  font-size: 18px;
  border: 4px solid black;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

ul {
  columns: 2;
  margin-top: 3px;
  justify-content: left;
}

.pokemon-description > p {
  width: 100%;
  margin: 0;
  font-weight: bold;
  text-align: center;
}

#selected-pokemon {
  margin: 10px;
}

.fas {
  color: #cb2424;
}

.fa-heart {
  margin-left: 10px;
  transform: scale(1);
  transition: transform 0.25s;
}

.fa-heart:active {
  transform: scale(0.95);
}

.fa-times {
  position: relative;
  font-size: 20px;
  margin: 0 10px;
  float: right;
}

.fa-heart:hover,
.button:hover,
.form-button:hover,
.fa-times:hover {
  cursor: pointer;
}

.favorite-list {
  padding: 10px 0;
  height: auto;
}

.favorite-list > li {
  background-color: lightgrey;
  border: 3px solid black;
  transform: scale(1);
  transition: transform 0.5s;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 5px 5px;
}

.fav-list:hover {
  background-color: #618a3d;
  transform: scale(1.025);
}

li > img {
  height: 60px;
  width: 60px;
}

.fav-heading {
  text-align: center;
  font-size: 25px;
}

.loader {
  display: flex;
}

#loading-image {
  transform: scale(0.3);
  margin: auto;
}

.type,
.type-name,
.poke-weight,
.weight-number {
  display: inline;
  width: calc(99% / 3);
  margin: 0;
  text-align: center;
}

.type-name,
.weight-number {
  font-size: 20px;
}

.type,
.poke-weight {
  font-weight: lighter;
}

.error-container {
  font-size: 20px;
  width: 80%;
  margin: auto;
  text-align: center;
}
