body{
    background: #222;
    font-family: monospace;
}

.titulo{
    color: white;
    text-align: center;
}

.gallery-container{
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}

.gallery-item{
    width: 400px;
    height: 300px;
    margin-bottom: 30px;
    object-fit: cover;
    filter: brightness(70%);
    border: 2px solid #fff;
    animation: escalar 1.5s infinite alternate;
}

@keyframes escalar{
    to{
        transform: scale(1) rotate(-5deg);
    }
    from{
        transform: scale(1.05);
    }
}


.gallery-item:hover{
    filter: brightness(100%);
}


