.btn {
    cursor: pointer;
}

#load-more-btn {
    display: grid;
    justify-content: center;
}

#load-more-btn>button {
    background-color: blue;
    font-size: 30px;
    font-weight: 900;
    color: yellow;
    border: 6px solid rgb(217, 255, 0);
    margin: 12px;
}

#close-btn {
    cursor: pointer;
}

.change-pokemon-btn {
    gap: 80px;
}

.change-Pokemon {
    border-radius: 50px;
    height: 80px;
}

@media(max-width: 750px) {
    .change-Pokemon {
        border-radius: 50px;
        height: 88px;
        margin-top: 24px;
    }
}

@media(max-width: 450px) {
    .change-Pokemon {
        position: relative;
        bottom: 540px;
        height: 48px;
    }

    .change-pokemon-btn {
        gap: 0px;
        justify-content: space-between;
        margin:0 4px ;
    }
}