body{
    background-color: black;
}

h1{
    color:antiquewhite;
    text-align: center;
}

.galeria{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 1em auto;
    row-gap: 5px;
    column-gap: 5px;
    justify-items: center;
    justify-content: center;
}

.galeria img{
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 25px;
}

.galeria img.vertical {
    width: 300px;
    height: 415px;
}

.contenedor {
    display: flex;
    flex-direction: row;
    
}

.item{
    position: relative;
    display: inline-block;
}

.item img{
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.item img:hover{
    filter: brightness(0.6);
}


.texto {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 0px;
    text-align: left;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    padding: 5px;
    font-size: 1rem;
    transition: font-size 0.3s ease;
}

.item:hover .texto {
    font-size: 1.15rem;
    color: #f6da27;
}

footer {
    margin-top: 2em;
    padding: 1em 0;
    text-align: center;
    color: grey;
  }
  