.centered {
    display: flex;
    justify-content: center;
    margin: auto;
}

.caption-container {
    margin-top: 430px;
    display: flex;
    flex-flow: column;
}

#bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

#bg-divider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0006;
}

h2 {
    text-align: center;
}

@media all and (max-width: 800px) {
    .caption-container {
        margin-top: 150px;
    }

    #bg {
        top: 80px;
    }
}