/*

* {
    outline: solid red;
} 

*/

#main-grid {
    display: flex;
    flex-wrap: wrap;
    width: 320px;
    flex-shrink: 0;
    border-radius: 12px;
    margin-top: 120px;
}

#grid-div {
    display: flex;
    justify-content: center;
}

/* Make the video cover the whole body */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ensures the video fills the screen without stretching */
  z-index: -1;       /* pushes the video behind all content */
}