body {
    margin: 0px;
    background-color: rgb(26, 26, 26);
    max-width: 1920px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    height: 180px;
    width: 100vw;
    background-color: black;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.searchHeader{
    display: flex;
    justify-content: center;
    align-items: center;
}

.typeStylingButton{
    background-color: green;
    border-radius: 5px;
    box-shadow: inset 0px 0px 5px 1px rgb(0, 0, 0);
    padding: 2px;
    text-align: center;
    width: 70px;
    height: 25px;
    margin-top: 8px;
    color: rgb(0, 0, 0);
    border: 0px solid black;
    cursor: pointer;
}
.typeStylingButton:hover{
    box-shadow: inset 0px 0px 5px 1px rgb(255, 255, 255);
}

.morePokemon{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.morePokemonButton{
    border-radius: 5px;
    width: 180px;
    height: 62px;
    border-width: 0px;
    background-color: rgb(255, 255, 255);
    box-shadow: inset 0px 0px 20px 1px rgb(0, 0, 0);
    cursor: pointer;
    font-size: 24px;
}

.morePokemonButton:hover{
    background-color: rgb(255, 255, 255);
    background-image: linear-gradient(to right, red , yellow, white);
}

.filterPokeTypeButtons{
    margin: 10px 10px 10px 10px;
    text-align: center;
}

.margin1 {
    margin: 1em;
}

.displayNone {
    display: none;
}

td,
th {
    text-align: left;
    padding: 3px;
}

.pokeCardh1 {
    text-align: center;
}

html{
    scroll-behavior: smooth;
    display: flex;
    align-items: center;
    justify-content: center;
}