body {
    margin: 0;
    font-family: 'Open Sans';
    user-select: none;
    background-image: url(./img/pokemon-g0039262f3_1920.jpg);
    background-position: center;
    background-attachment: fixed;
}
body::-webkit-scrollbar{
    width: 0;
}

.d-none {
    display: none !important;
}

.o-hidden {
    overflow: hidden;
}

header {
    height: 80px;
    background-color: rgba(255, 255, 255, .2);
    color: white;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

input {
    font-size: 16px;
    height: max-content;
    border-style: none;
    outline: none;
    border-radius: 5px;
    opacity: .5;
}

/******************************************************/
/******************** show Pokedex ********************/
/******************************************************/

#allPokemon {
    padding: 0 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pokeCard {
    height: 200px;
    width: 150px;
    margin: 8px;
}

.pokeId {
    color: rgba(255, 255, 255, .4);
    font-size: smaller;
}

.pokeName {
    color: rgba(255, 255, 255, .5);
    font-weight: bold;
    font-size: 20px;
}

.pokeCard img {
    height: 150px;
    filter: grayscale(100%)
}

.pokeCard img:hover {
    transition: 500ms ease-in-out;
    transform: scale(1.5);
    filter: grayscale(0);
    cursor: pointer;
}

/*************************************************************/
/******************** show select Pokemon ********************/
/*************************************************************/

#infoCardContainer {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(255, 255, 255, .4);
    display: flex;
    justify-content: center;
    align-items: center;
}

#infoCard {
    height: max-content;
    width: max-content;
    background-color: rgba(255, 255, 255, .8);

    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#info {
    height: 60%;
    width: 100%;
    margin-top: 20px;
}

.pokeIdBig {
    font-size: 30px;
    font-weight: bold;
}

.pokeNameBig {
    font-size: 25px;
    font-weight: bold;
}

#bigPicture {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

#bigPictureNow {
    height: 400px;
}

.selectPokemon {
    height: 150px;
    opacity: .7;
    filter: grayscale(100%);
}

.selectPokemon:hover {
    transition: 500ms ease-in-out;
    opacity: 1;
    transform: scale(2);
    filter: grayscale(0);
}

#characterDeteils {
    width: max-content;
    padding: 16px 0;
    display: flex;
    gap: 32px;
}

.pokeInfo {
    width: 800px;
    display: flex;
}

.xButtonNameId {
    display: flex;
    align-items: center;
}

.closeButtonHandy {
    position: relative;
    left: -10px;
    opacity: 0;
}

/***************************************************************/
/******************** Data and Progress Bar ********************/
/***************************************************************/

.progress {
    display: flex;
    height: 24px;
}

.progressContainer {
    height: 20px;
    width: 500px;
    border-bottom: 1px solid black;
    background-color: rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    opacity: .8;
}

.progressContainer:hover {
    transition: 225ms ease-in-out;
    background-color: rgba(0, 0, 0, .4);
    opacity: 1;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.progressBar {
    height: 80%;
    text-align: center;
    border-bottom: .1px solid black;
    border-right: 1px solid black;
}

td {
    white-space: nowrap;
}

/***************************************************************/
/******************** load next 100 Pokemon ********************/
/***************************************************************/

button {
    opacity: .5;
    border-radius: 5px;
    cursor: pointer;
}