/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: red;
  font-family: Verdana;
}

/* Make video cover the whole screen */
#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover; /* crop video so it fills screen */
  z-index: -1; /* push video behind everything else */
}

/* Content styling */
.content {
  position: relative;
  z-index: 1; /* ensures it's above the video */
  text-align: center;
  color: white;
  font-family: "Comic Sans MS", sans-serif;
  padding-top: 20%;
  text-shadow: 2px 2px 5px black;
}