html, body {
    background-color: #080808;
    height: 100%;
    color: #fff;
}
body {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./banner.webp");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.banner h1 {
    text-align: center;
    padding-top: 15%;
    font-size: 2em;
    color: white;
    font-weight: bold;
}
.banner > span {
    position: absolute;
    bottom: 4px;
    left: 8px;
    font-size: 2em;
}
.banner p {
    text-align: center;
    color: white;
}
#folders {
    display: flex;
    flex-wrap: wrap;
    padding: 35px 0px;
    justify-content: center;
}
#folders:empty {
    padding: unset;
}
h2 a {
    text-decoration: none;
    display: inline-block;
}
h4 {
    text-align: center;
    margin-top: 15px;
    font-size: 2em;
}
#folders a {
    box-sizing: content-box;
    margin: 10px;
    height: 250px;
    width: 350px;
    overflow: hidden;
    color: white;
    position: relative;
    background-color: white;
}
h2 a div {
    text-shadow: 0 1px 4px #000, 0 1px 8px #000;
    color: #fff;
}
#folders a > div:last-child {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0);
}
#folders a:hover > div:last-child {
    background-color: rgba(0, 0, 0, .5);
}
#folders a > div:last-child > div {
    position: absolute;
    bottom: 5px;
    left: 20px;
    opacity: 0.0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#folders a:hover > div:last-child > div {
    transform: translateY(-20px);
    opacity: 1.0;
}
#folders span {
    font-size: 0.8em;
    display: block;
    opacity: 0.5;
}
.no {
    background: #f88 !important;
}
.no * {
    background: none !important;
}
.flex-images { overflow: hidden; }
.item { float: left; box-sizing: content-box; overflow: hidden; position: relative;  }
h2 a > *, .item > * {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.3s ease, background-color 0.4s ease;
}
h2 a:hover img {
    transform: scale(1.1);
}
.item:after {
    content: attr(data-year);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 4px 4px;
    font-size: 13px;
    color: #fff;
    background: #000;
    background: rgba(0,0,0,.3);
}
