
body{background-color: rgb(153, 78, 175);}
img{
    width:150px;
    height:150px;
    object-fit:cover;
    border:  rgb(19, 0, 128) solid 3px
}
.galeria{
display:flex;
flex-direction: row;
flex-wrap: wrap;
 justify-content: center;
align-content: center;  height:100vh;
gap:10px 15px
}

@media(max-width:480px){
.galeria{display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: center;
gap:5px}

img{width:60px;
border:rgb(128, 26, 0) double 2px}
}