.albumContainer{
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 10000px;
    margin: auto;
}
.albumdeGaleria{
   width: 350px;
   height: 280px;
   margin-bottom: 30px;
   object-fit: cover;
   filter: brightness(70%);
   cursor: pointer;
}

.albumdeGaleria:hover{
    filter: brightness(100%);
}
.modal__imgAlbum{
    width: 100%;
    min-height: 100vh;
    background: rgba(0,0,0, 1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    display: none;
}
.modal__content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.modal__img{
    width: 50%;
}
.modal__boton{
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #3f2274;
    font-size: 2.5em;
    text-align: center;
    border-radius: 2%;

}
.modal--open{
    display:block;
}