#enterBtn,
#scrollToTopBtn,
#loadMoreBtn,
#showAllBtn {
    grid-column: 1/-1;
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: rgb(0, 84, 202);
    color: rgb(255, 255, 255);
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    max-height: 45px;
}


#enterBtn:hover,
#scrollToTopBtn:hover,
#loadMoreBtn:hover,
#showAllBtn:hover {
    background-color: rgb(251, 65, 52);
    cursor: pointer;
    box-shadow: rgb(255, 207, 16) 0px 0px 20px;
}


#enterBtn {
    font-size: 56px;
    min-width: 25vw;
    min-height: 100px;
    border-radius: 25px;
    opacity: 0;
    transform: scale(0);
    transition: opacity 1s ease-out, transform 1s ease-out;
}


#scrollToTopBtn {
    position: sticky;
    bottom: 130px;
    display: none;
}


#cryButton {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 55px;

    @media (max-width: 700px) {
        width: 32px;
        height: 32px;
    }
}


#shinyButton {
    cursor: pointer;
    transition: transform 0.2s ease;
    margin: 5px;

    @media (max-width: 700px) {
        width: 32px;
        height: 32px;
    }
}


.next_pokemon_button {
    background: none;
    border: none;
    cursor: pointer;
    margin: 5px;
    place-items: center;
    width: 5%;
}


.next_pokemon_button img {
    height: auto;
    min-width: 36px;
    max-width: 75px;
}


.next_pokemon_leftArrow {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}


.next_pokemon_rightArrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}


.next_data_button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px;
    height: auto;
    place-items: center;
    grid-row: 2;
    grid-column: 1;
    flex: 1;
}


.next_data_button img {
    height: auto;
    min-width: 36px;
    max-width: 75px;
}