*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(353deg, rgba(136,163,117,100) 0%,  rgba(185,230,149,1)100%);
}

header h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2vw;
    padding: 0 2vw;
}
.gallery-items{
    width: 340px;
    height: 340px;
    border: 10px solid #FFF;
    box-shadow: 5px 5px 5px #0006;
    transition: transform .5s linear;
}

.gallery-items2{
    width: 442px;
    height: 442px;
    border: 10px solid #FFF;
    box-shadow: 5px 5px 5px #0006;
    margin-left: -6em;
    
    
}

.gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-items:hover{
    transform: scale(1.3);
}


footer{
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-style: italic;
}