#clear-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: whitesmoke;
}

#overlay-buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.info-button {
    width: 100px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background-color: rgb(195, 195, 195);
    font-size: 18px;
    font-weight: bold;
}

.info-button:hover{
    box-shadow: 0 0 12px 4px grey;
    cursor: pointer;
    transition: 0.2s;
}

#close-button-container{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../png/pokemon_button_circle_transparent.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 44px;
}

#close-button-container:hover{
    cursor: pointer;
    background-size: 52px;
    background-position: center;
    transition: 0.2s;
}

#previous-arrow, #next-arrow {
    width: 24px;
}

#previous-arrow {
    transform: rotate(180deg);
}

#more-pokemon-container {
    height: 80px;
    background:none;
}

#more-pokemons-button{
    background-color: rgb(253, 213, 34);
    color: rgb(0, 0, 146);
    width: 274px;
    height: 60px;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 800;
}

#more-pokemons-button:hover {
    width: 280px;
    height: 70px;
    box-shadow: 0 0 10px 0 black;
    transition: 0.3s;
    border: solid rgb(0, 0, 146) 1px;
}