/* Message that appears if there's no Pokemon added to favourites. */
.container-favourite-pokemon{
  position: fixed;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  height: 350px;
  width: 100vw;

  display: none;
}

.container-favourite-pokemon p{
  width: 80%;
  text-align: center;
}

.container-favourite-pokemon button{
  border: none;
  background-color: rgb(97,157,218);
  color: white;
  border-radius: 5px;
  height: 40px;
  min-height: 40px;
  width: 89px;
  border-bottom: 4px solid rgb(38, 91, 145);
  border-right: 4px solid rgb(38, 91, 145);

  border: 4px solid solid rgb(38, 91, 145);
  transition: 0.3s ease;
  cursor: pointer;

  margin: 15px 2% 0% 2%;

  border-radius: 30px;
}

.container-favourite-pokemon button:hover{
  transform: translate(2px, 2px);
  border-bottom: 2px solid rgb(38, 91, 145);
  border-right: 2px solid rgb(38, 91, 145);
}
