body{
    background-color: black;
}

.container {
    display: flex; /* or inline-flex */
    flex-flow: row wrap;
    justify-content: space-around;
}

.container img {
    width: 100%;
    max-width: 500px;
}
@keyframes blink {50% { color: transparent }}
.loader__dot { animation: 1s blink infinite }
.loader__dot:nth-child(2) { animation-delay: 250ms }
.loader__dot:nth-child(3)

#videobcg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1000;
    overflow: hidden;
    object-fit: fill;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);

}