@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body{
    background: rgb(232,236,239);
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    


}

/*HEADER*/
header ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style: none;

}

li {
    padding-right: 50px;
    font-size: 17px;
}
li:hover {
    transform: scale(1.2);
    transition: 0.5s all;
}

header a {
    text-decoration: none;
    color: black;

}


.iconess {
    width: 17px;
    height: 17px;
    padding-top: 1px;
}

a li span {
    text-decoration: underline;
}

header {
    height: 80px;

}

/* main */

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2vw;
    padding: 0 1vw;
}

.itens {
    width: 290px;
    height: 290px;
    flex-grow: 1;

    -webkit-box-shadow: 3px 3px 17px 7px rgba(0,0,0,0.43);
    -moz-box-shadow: 3px 3px 17px 7px rgba(0,0,0,0.43);
    box-shadow: 3px 3px 17px 7px rgba(0,0,0,0.43);
}

.itens img{
    height: 100%;
    width: 100%;
    object-fit:cover;
    filter: grayscale(100%);
}
img:hover {
    transform: scale(1.1);
    transition: 0.5s;
    filter: grayscale(0%);
}

h1 {
    margin-bottom: 50px;
}
