/* SCROLLBAR */
::-webkit-scrollbar{
    width: 12px;
}

::-webkit-scrollbar-track{
    background-color: #ececec;
}

::-webkit-scrollbar-thumb{
    background-color: #d1b3b7;
    border-radius: 10px;
}

body{
    background-color: #FFF;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.header{
    position: fixed;
    z-index: 2;
    top: 0;
    background-color: #ffffffd3;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 1px 4px 6px #7c7c7c1a;
}

.header-logo{
    color: #7c7c7c;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-nav ul{
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-nav ul li{
    margin-left: 12px;
}

.header-nav ul li a{
    border-radius: 100%;
    color: #FFF;
    width: 24px;
    height: 24px;
    background-color: #C2959C;
    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
}

.header-nav ul li a:hover{
    background-color: #7c7c7c;
}

main{
    width: 90%;
    margin: auto;
}

.container{
    position: relative;
    margin-top: 100px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    filter: drop-shadow(3px 3px 4px #bdbdbd);
}

.imagem{
    position: relative;
}

.tamanho{
    display: block;
    max-width: 100%;
    width: 350px;
    max-height: 100%;
    height: 250px;
    object-fit: cover;
    margin: 15px;
    border-radius: 10px;
    -webkit-filter:grayscale(0%);
}

.imagem:hover{
    -webkit-filter:grayscale(100%);
    transition: .8s;
}

.conteudo{
    color:#ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.6s;
}

.conteudo:hover{
    opacity: 1;
}


footer{
    position: fixed;
    z-index: 6;
    background-color: #fff9f9b4;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom:0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    height: 25px;
    padding: 1px;
}

footer h4{
    color: #af9b9b;
    font-size: 13px; 
    font-weight: 200;
    font-weight: bold;
}

@media screen and (max-width: 750px) {

    .header-logo{
        max-width: 190px;
        font-size: 13px;
        letter-spacing: 2px;
    }

    .container{
        margin-top: 90px;
        margin-bottom: 20px;
    }

    .tamanho{
        max-width: 90%;
        width: 350px;
        max-height: 90%;
        height: 200px;  
    }
    
    .conteudo{
        font-size: 10px;
    }

    footer{
        height: 18px;
    }

    footer h4{
        font-size: 11px; 
        font-weight:normal;
    }

}