header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: sticky;
    top: 0rem;
    background: white;
    box-shadow: rgb(99 99 99 / 20%) -5px 3px 8px 0px;
    z-index: 3;
}

input {
    outline: none;
    height: 1.5rem;
    border: unset;
    margin: 1rem;
    font-family: 'Roboto', sans-serif;
    box-shadow:
        rgb(255, 217, 19) 0px 0px 0px 6px,
        rgb(255, 156, 85) 0px 0px 0px 7px,
        rgb(255, 85, 85) 0px 0px 0px 8px;
}

header img {
    margin: 1rem;
    height: 5rem;
}

h1 {
    font-family: 'Roboto', sans-serif;
}

h2 {
    font-family: 'Roboto', sans-serif;
}

span {
    font-family: 'Roboto', sans-serif;
}

a {
    font-family: 'Roboto', sans-serif;
}

#pokemon_selection_cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 1rem;
    margin: 1.5rem;

}

.pk_card_design {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    width: 18rem;
    border-radius: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 125ms ease-in-out;
}

.pk_card_design:hover {
    transform: scale(1.05);
}

.name_layout {
    display: flex;
    justify-content: space-between;
    margin: 0rem 1rem;
}

.info_layout {
    display: flex;
    justify-content: space-between;
    margin: 0rem 1rem;
}

.info_layout img {
    height: 10rem;
    margin-bottom: 0.5rem;
    z-index: 2;
}

.pk_type_view {
    display: flex;
    justify-content: center;
    background-color: rgb(238, 236, 236, 0.2);
    border: 1px solid rgb(238, 236, 236, 0.2);
    border-radius: 1rem;
    margin: 0.5rem;
    padding: 0.1rem 0.6rem 0.1rem 0.6rem;
}

.bg_ball_lp {
    position: absolute;
    top: 4rem;
    transform: rotate(-17deg);
    opacity: 0.4;
    z-index: 1;
    height: unset;
    right: 0.6rem;
}

.ont_direktion {
    display: flex;
}

/*scrollbar*/
::-webkit-scrollbar {
    width: 0.6rem;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff8c00, #b36300);
    border-radius: 0.3rem;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #b36300, #804a00);
}

/*responsive area*/
@media (max-width: 455px) {
    header img {
        height: 2.9rem;
    }
}

@media (max-width: 280px) {
    header img {
        height: 1.6rem;
    }

    #pokemon_selection_cards {
        justify-content: unset;
        grid-gap: 1rem;
        margin: 0.5rem;

    }

}