.pokemon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.17), -4px -4px 18px rgba(0, 0, 0, 0.312);
    margin: 10px;
    border-radius: 5px;
    gap:10px;
    padding:10px;
    width:190px;
}
.pokemon img{
    width:80%;
}
.name{
    font-size:20px;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.type{
    /* letter-spacing: 0px; */
    /* font-size:14px; */
}
.pokedex-number{
    font-size: 18px;
    font-weight: 500;
}
.searchbar{
    width:25%;
    background-color: white;
    height:38px;
    border: none;
    position: absolute;
    top:calc(50% - 19px);
    left:calc(100% - 30%);
    padding: 0px 15px;
    border-radius: 20px;
    font-size: 18px;
}
.searchbar:focus{
    outline: none;
}
