#albumMain {
    min-height: 80vh;
}

.album-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-template-rows: minmax(250px, 1fr);
    width: 100%;
    max-width: 80ch;
    margin: 0 auto;
    padding: 0;
    gap: 1rem;
}


.box-album {
    position: relative;
    overflow: hidden;
    outline: solid 1px gray;
    color: #fff;
}

.box-album img,
.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-album time,
.box-album li {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    opacity: 0;
    text-align: center;
}

.box-album li {
    list-style: none;
    top: 45%;
}

.box-album time {
    top: 55%;
}

.box-album:hover img {
    filter: brightness(50%);
}

.box-album:hover>li,
.box-album:hover>time {
    opacity: 1;
}