/* contacts.css */
body {
  background: url('images/darkglove.png');
  color: red;
  font-family: "Comic Sans MS", cursive;
  text-align: center;
}


/* Reset margins/padding so the video covers everything */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

/* Video background setup */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* makes video cover screen */
    z-index: -1;         /* push it behind content */
}

/* Content should stay above video */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}
