*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #2d2a2a;
}
header{
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;

}

header .logo{
padding-left: 20px;  
}

h1{
    font-family: Asap, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #FFF;
    padding: 15px;

}
.gallery-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2vw;
    padding: 0 2vw;
}
.gallery-items{
    width: 240px;
    height: 200px;
    /*border: 5px solid #FFF;
    box-shadow: 5px 5px 5px #0006;*/
    flex-grow: 1;
    transition: transform .2s linear;
}
.gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-items:hover{
    transform: scale(1.2);
    border: 10px solid #FFF;
    box-shadow: 5px 5px 5px #0006;*
}

#contatos{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    font-family: Nunito, sans-serif;
    color: #FFF;
    padding: 60PX;
    font-size: 20px;

}
#contatos div{
text-align: center;
width: 150px;
flex-grow: 1;
padding-top: 25px;

}

#contatos div:hover{

    color:green;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;

}

#fechar{
    color:forestgreen;
    display: flex;
    justify-content: center;
    align-items: center;
}

#fechar a:link{

    color:darkgreen;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;

}

#fechar a:hover{

    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

footer{
    font-family: Nunito, sans-serif;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-style: italic;
}
 
::-webkit-scrollbar {
    width:10px;
    height: 10px;
    }
    
    ::-webkit-scrollbar-track {
    background:#333;
    }
     
    ::-webkit-scrollbar-thumb {
    background: #049713;
    }
        
        
        