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