@media(max-width: 610px) {
    .filterPokeTypeButtons {
        display: none;
    }
    .pokeDropDown{
        display: block;
        background-color: white;
        background-image: linear-gradient(to right, green, yellow, rgb(78, 78, 255), rgb(202, 24, 225));
        width: 100px;
        margin: 8px;
        color: cuorser;
        cursor: pointer;
    }
}

@media(max-width: 480px) {
    .searchHeader {
        flex-direction: column;
        display: flex;
        align-items: center;
    }

    .searchButton {
        margin-top: 16px;
        margin-left: 0px;
    }

    header {
        height: 200px;
    }

    .pokeCard, .notAilableCard {
        width: 300px;
        border: solid 4px;
    }

    .pokeCardh1 {
        font-size: 25px;
    }

    .pokeImage {
        height: 150px;
        width: 150px;
    }

    .pokeCardDetailsBottom {
        height: 0px;
    }

    .notAilableCard h1{
        font-size: 30px;
    }

    .notAilableCardButton{
        width: 100px;
    }
}

@media(max-width: 350px) {
    .closeButton {
        display: none;
    }

    .pokeCard, .notAilableCard {
        width: 200px;
        border: solid 3px;
        height: 300px;
    }

    .pokeCardId {
        display: none;
    }

    .pokeCardh1 {
        font-size: 20px;
    }

    .pokeImage {
        height: 100px;
        width: 100px;
    }

    .arrow {
        height: 25px;
    }
    
    .notAilableCard h1{
        font-size: 20px;
    }
}