body{
    margin: 0;
    background: rgb(244,183,114);
    background: linear-gradient(180deg, rgba(244,183,114,1) 0%, rgba(218,133,76,1) 100%);
}

.flex {
    display: flex;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    width: 100%;
}

header a {
    justify-content: center;
}

header a img {
    width: 300px;
}

main {
    width: 100%;
    background-color: #c6d6da;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
}

#descRegion {
    font-size: 25px;
    text-align: center;
}

.listaPokes {
    width: 95%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.pokeEnLista {
    background-color: #9a9dc7;
    padding: 5px 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.pokeEnLista:hover {
    position: relative;
    top: -5px;
}

.pokeEnLista img{
    width: 250px;
}

.pokeEnLista h2{
    margin: 2px;
}

.creditos{
    text-align: center;
}

.navdex {
    width: 80%;
    
    flex-direction: row;
    justify-content: center;
}

.navdex a, .navdex p{
    margin: 10px;
    font-size: 30px;
}

.infogeneral {
    width: 100%;
    
    flex-direction: row;
}

.imgpokemon{
    background-color: #9a9dc7;
    width: 40%;
    margin: 30px;
    border-radius: 20px;
}

.botonshiny{
    position: relative;
    left: 10px;
    top: 10px;
    background-image: url(imgs/shiny.png);
    background-repeat:no-repeat;
    height:60px;
    width:60px;
    background-size: 50px 50px;
    background-position:center;
    border: none;
    background-color: transparent;
    border-radius: 20px;
}

.botonshiny:hover {
    cursor: pointer;
    background-color: white;
    transition: background-color 0.5s;
}

.imgpokemon img {
    width: 100%;
}

.datosbasicos {
    width: 60%;
    flex-direction: column;
    margin: 30px;
    align-content: center;
}

.nombre {
    font-size: 80px;
    margin: 8px;
    font-weight: bold;
}

.especie {
    font-size: 30px;
    margin: 8px;
}

.tipos img {
    margin: 5px;
    background-color: white;
    padding: 3px;
    border-radius: 20px;
}

.habs {
    font-size: 25px;
}

.nuevahab {
    text-decoration: underline dashed;
}

.dex {
    width: 100%;
    
}

.dex h1, .inspiracion h1, .evolucion h1 {
    margin-left: 20px;
}

.dex p, .inspiracion p, .evolucion p{
    background-color: white;
    margin: 30px;
    padding: 10px;
    border-radius: 15px;
    font-size: 20px;
}

.evolucion {
    width: 100%;
}

.inspiracion {
    width: 100%;
}

.imagenes {
    width: 100%;
}

footer{
    margin-top: auto;
    padding: 5px 0px;
    text-align: center;
    background: #000;
    color: #fff;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 5px;
}

/* TAGS */

/* tag button styles */
.tag, #reset {
    cursor: pointer;
}

#tag-buttons {
    margin-top: 1em;
}

.tag, #reset, #mostrarTags {
    border: 1px solid #021822;
    border-radius: 15px;
    margin-bottom: 0.5em;
    padding: 0.5em;
    background-color: #f4b772;
    color: #021822;
}

#mostrarTags {
    width: 120px;
}

.tag::before {
    content: "#";
}

.hidden {
    display: none;
}

#divTags {
    margin-bottom: 20px;
}

.divMostrarTags {
    display: flex;
    justify-content: center;
}


/* styles for when a tag is selected */
.active {
    background-color: #9ccde4;
    color: #201202;
}

/* RESPONSIVE */

@media screen and (max-width: 1200px) and (max-height: 900px) {
/* .contain {
    flex-flow: column wrap;
    align-items: center;
} */
    .infogeneral{
        flex-wrap: wrap;
    }

    .imgpokemon{
        margin: 0 auto;
        width: 80%;
    }

    .nombre {
        font-size: 50px;
    }

    .especie, .habs {
        font-size: 25px;
    }



}