.gallery {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

.words {
    margin: 30px;
}

.audioArea {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: lavenderblush;
}

audio {
    border-width: 1px;
    border-style: solid;
}


footer {
    text-align: center;
    padding: 3px;
    background-color: lavenderblush;
}

.back-video {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);


}

@media (min-aspect-ratio:16/9) {
    .back-video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio:16/9) {
    .back-video {
        width: 100%;
        height: 100%;
    }
}