body {
    background-color: black;
    color: white;
    font-family: monospace;
}

a {
    color: white;
    font-size: 20px;
}

@media (max-aspect-ratio: 1/1) {
    #container {
        display: grid;
        grid-template-columns: auto auto;
    }
}

@media (min-aspect-ratio: 1/1) {
    #container {
        display: grid;
        grid-template-columns: auto auto auto;
    }
}

#tile {
    position: relative;
    margin: 5px;
    float: left;
    overflow: hidden;
}

#tile img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .3s ease;
}

#tile:hover img {
    transform: scale(1.1);
}

#tile p {
    color: rgb(255, 255, 255);
    position: absolute;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.4);
    left: 50%;
    top: 90%;
    transform: translate(-50%, -50%);
    font-size: 2vw;
    white-space: nowrap;
    font-weight: 600;
    margin: 0;
    backdrop-filter: blur(5px);
    padding: 10px;
    border-radius: 10px;
}