.hp{
    background-color: green;
    box-shadow: 0 0 10px green;
    transition: width 880ms linear;
}

.attack{
    background-color: rgb(255, 49, 49);
    box-shadow: 0 0 10px 	rgb(255, 49, 49);
    transition: width 880ms linear;
}

.defense{
    background-color: rgb(214, 107, 19);
    box-shadow: 0 0 10px rgb(214, 107, 19);
    transition: width 880ms linear;
}

.sp-attack{
    background-color: rgb(173, 5, 5);
    box-shadow: 0 0 10px rgb(173, 5, 5);
    transition: width 880ms linear;
}

.sp-defense{
    background-color: rgb(121, 41, 157);
    box-shadow: 0 0 10px rgb(121, 41, 157);
    transition: width 880ms linear;
}

.speed{
    background-color: rgb(73, 114, 235);
    box-shadow: 0 0 10px rgb(73, 114, 235);
    transition: width 880ms linear;
}

.pokemonOverview{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 600px;
}

.pokemonOverview .types{
    width: 50%;
    display: flex;
    justify-content: space-evenly;
}

.pokemonOverview .name{
    font-size: 1.6rem;
}

.pokemonOverview .head{
    margin: 2rem 0 1rem 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pokemonOverview .pokemonData{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.head img{
    height: 120px;
}


.navInfo{
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background-color: white;
    border-radius: 2rem 2rem 0 0;
}

.navInfo ul{
    padding: 0.5rem;
    margin: 0.5rem 0 0 0;
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: space-around
}

.navInfo li {
    opacity: 0.3;
    text-align: center;
    cursor: pointer;
}

.navInfo li:hover{
    opacity: 1;
    transition: 100ms linear;
}

.navInfo li.active{
    opacity: 1;
}

#pokemonData{
    background-color: #ffff;
    width: 100%;
    flex-grow: 1;
    padding: 1rem 2rem;
    overflow-y: scroll;
}

#pokemonData h4{
    margin-bottom: .75rem;
}

div.description{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#pokemonData p{
    margin: 0;
    text-align: end;
    text-transform: capitalize;
    font-size: 1.07rem;
}

p.attributte{
    color: rgba(0,0,0,.5);
}

#about p.story{
    text-align: justify;
}

div#pokemonData div.showTab{
    display: flex;
    flex-direction: column;
    height: 100%;
}

div#pokemonData > div{
    display: none;
}

div#stats{
    justify-content: center;
}

div.statLine{
    display: grid;
    grid-template-columns: minmax(0,.5fr) minmax(0,.5fr) 1fr;
    padding: 0.5rem 0;
    align-items: center;
}

.statLine span{
    text-align: center;
    text-transform: capitalize;
}

.statBar{
    height: 1.2rem;
    border-radius: .5rem;
    background-color: #ddd;
}

.statBar span{
    height: 1.2rem;
    border-radius: .5rem;
    display: block;
}

div#pokemonData div#evolution{
    justify-content:start;
    align-items: center;  
}

#evolution img{
    height: 120px;
    width: 120px;
}

.evolutionContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background-color: #6c79d0;
}

#dataFooter{
    align-self: end;
    height: 20px;
    background-color: #ffff;
    width: 100%;
    border-radius: 0 0 1rem 1rem;
}