body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  display: flex;
  gap: 20px;
}

.footer-content a {
  text-decoration: none;
  color: #808080; /* Dark grey color */
  font-family: "Inconsolata", monospace;
}

.footer-content a:hover {  /* Optional: change color on hover */
  color: #cccccc; /* Light grey on hover */
}