/* Remove default margins */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Fullscreen video background */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
  background: rgba(0,0,0,0);
  z-index: -1;
}

/* Content */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  top: 40vh;
}

/* Title */
h1 {
  font-size: 48px;
}

/* Subtitle */
p {
  font-size: 20px;
}

a, a:link, a:visited, a:active {
  color: white;
}
.interact {
  margin: auto;
  color: white;
  top: 400vh;
}