/*-----GENERAL-----*/
* {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
h2 {
    text-align: center;
    font-size: 40px;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 0;  
}
h3 {
    font-size: 25px;
    text-align: center;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 0;
    text-transform: capitalize;
}
h4 {
    font-size: 15px;
    text-align: center;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 0;
    text-transform: capitalize;
}

ul {
    list-style: none;
}

img {
    width: 100%;
}
.img_container img {
    width: 90%;    
}

/*-----------------------------------------------*/
/*HEADER*/

.list-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    padding-left: 0;
    background-color: #db3939cf;
    font-size: 20px;
}

li a {
    display: flex;
    text-decoration: none;
    color: #001e1d;
    border: 1px solid #f9bc60;
    padding: 5px;    
    background-color: #e16162;
}

li a:hover {
    color: green;
    background-color: yellow;
}

*-----------------------------------------*/

.title_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: black;
    padding: 200px;
    /*background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 0.384) 0%, rgba(9,9,121,0.384) 35%, rgba(0,212,255,0.384) 100%);*/
}

/*BODY*/
.pokemon_id {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: right;
    margin: none;
    width: 20px;
}
 figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: none;
    width: 150px;
    height: 300px;
    padding: 20px;
    border: 5px solid #abd1c67a;
    border-radius: 24px;
    box-shadow: 4px 4px 4px rgba(128, 128, 128, 0.607);
    cursor: default;
    transition: all 500ms ease;
 }
 figure:hover {
    box-shadow: 8px 8px 12px;
 }

 .img_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: none;
    height: 300px;
 }

 #pokemonContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 0.384) 0%, rgba(9,9,121,0.384) 35%, rgba(0,212,255,0.384) 100%);
    border-radius: 30px;
 }


 /*COLOR CARDS :3*/
.grass {
    background-color: rgba(0, 100, 0, 0.607);
}
.fire {
    background-color: rgba(255, 21, 0, 0.607);
}
.water {
    background-color: rgba(0, 55, 255, 0.607);
}
.bug {
    background-color: rgba(151, 80, 26, 0.566);
}
.normal {
    background-color: rgba(201, 169, 131, 0.622);
}
.poison {
    background-color: rgba(236, 33, 70, 0.625);
}
.electric {
    background-color: rgba(218, 222, 0, 0.578);
}
.ground {
    background-color: rgba(71, 38, 0, 0.685);
}
.fairy {
    background-color: rgba(248, 92, 157, 0.637);
}
.fighting {
    background-color: rgba(111, 111, 111, 0.658);
}
.psychic {
    background-color: rgba(124, 0, 195, 0.595);
}
.rock {
    background-color: rgba(18, 12, 0, 0.652);
}
.ghost {
    background-color: rgba(69, 0, 69, 0.626);
}
.ice {
    background-color: rgba(0, 236, 236, 0.633);
}
.dragon {
    background-color: rgba(239, 160, 14, 0.607);
}

/*PARALLAX*/
.bg {
    background: url('./assets/wallpaperflare.com_wallpaper_1660.jpg') repeat;
    position: fixed;
    width: 100%;
    height: 300%;
    top:0;
    left:0;
    z-index: -1;
    background-position-x: 100px;
}

/*TABLET*/
 @media only screen and (max-width: 768px) {
    .figure_container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: none;
        width: 100px;
        border: 5px solid #abd1c6;
     }

    .bg {
        background: url('./assets/wallpaperflare.com_wallpaper_VerticalForm.jpg') repeat;
        position: fixed;
        width: 100%;
        height: 300%;
        top:0;
        left:0;
        z-index: -1;
        background-position-x: -40px;
        background-position-y: 120px;
    }
}

/*MOBILE*/
@media only screen and (max-width: 576px) {
    .figure_container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: none;
        width: 70px;
        border: 5px solid #abd1c6;
     }

    .bg {
        background: url('./assets/wallpaperflare.com_wallpaper_VerticalForm_Mobile.jpg') repeat;
        position: fixed;
        width: 100%;
        height: 300%;
        top:0;
        left:0;
        z-index: -1;
        background-position-x: -15px;
        background-position-y: -10px;
    }
}


