* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

header {
    background-color: rgb(145, 0, 193);
    height: 3em;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.profile {
    background:linear-gradient(rgb(235, 90, 90),rgb(199, 199, 255));
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding-bottom: 1em;
    align-items: center;
}

.img_container img {
    width: 100px;
    height: 100px;
    border: 1px solid gray;
    border-radius: 50%;
    margin-top: 2em;
        border: .3em solid  rgb(150, 74, 242);

}


h2{
    text-align: center;
    padding-bottom: 1em;
}
h1{
    color: white;
}
i{
    color: rgb(0, 0, 136);
}

header i{
    color: rgb(255, 243, 77);
}
footer i{
    color: rgb(181, 0, 24);
}
i:hover{
    transform: scale(1.1) ;
    transition: transform 1s;
    color: rgb(255, 0, 0);
}
img:hover{
    transform: scale(1.05); 
    transition: transform .3s;
}
img{
        transition: transform .3s;
}
.user_data {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;

}

.user_data div {
    text-align: center;
}

.user_data div p:nth-child(1) {
    border-right: 1px solid black;
    font-weight: 600;
}

.bio {
    width: 90%;
    padding: .5em;
    text-align: center;
}

nav,
footer {
    background-color: pink;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1em;
    height: fit-content;
}

nav{
    position: sticky;
    top: 0;
    z-index: 999;
}

footer {
    position: fixed;
    width: 100%;
    bottom: 0;
}

.image_container {
    width: 100%;
    height:fit-content;
    background-color: rgb(253, 253, 253);
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: repeat(5, 1fr);
    justify-items: center;
        padding-top: 1em;
        padding-bottom: 3em;

}

.image_container img {
    width: 100px;
    height: 150px;
}

i{
    font-size: 20px;
    padding: .5em;
}

/* media query */

@media (min-width: 614px) {

  
.image_container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
}
.image_container img {
    width: 200px;
    height: 300px;
}
}

@media (min-width: 614px) {

.profile{
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 2em;
    justify-content: center;
    gap: 2em;
}
.img_container img{
    width: 200px;
    height: 200px;
}
}


@media (min-width: 900px) {

  
.image_container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
}
.image_container img {
    width: 300px;
    height: 450px;
}
i{
    font-size: 30px;
    padding: .5em;
}

.img_container img{
    width: 300px;
    height: 300px;
}
.profile {
    font-size: 30px;
}

}

/* _______________________________________________________________ */
.fadeUp{
    animation: fadeUp both;
    animation-timeline: view(5% 0%);
}
@keyframes fadeUp {
   from{
    opacity: 1;
    transform: scale(.8) translateY(-10px);
   }
   to{
    opacity: 1;
        transform: scale(1) translateY(10px);

   }
}