.gallery {
    display: flex;
    flex-direction: row;
    background-color: black;
}

.gallery-item {
    position: relative;
    transition: flex-grow 0.6s;
    flex-grow: 1;
}

.gallery-item:hover {
    flex-grow: 2;
}

.gallery-item-title {
    z-index: 1;
    position: absolute;
    color: white;
    font-size: 2.5em;
    writing-mode: vertical-rl;
    transform: scale(-1);
    bottom: 32px;
    left: 16px;
}

@media screen and (max-aspect-ratio: 1/1) {
    .gallery {
        flex-direction: column;
    }
    
    .gallery-button {
        top: auto;
        bottom: 16px;
    }

    .gallery-item-title {
        font-size: 2em;
        writing-mode: horizontal-tb;
        transform: scale(1);
        bottom: 16px;
        left: 32px;
    }
}