@font-face {
    font-family: 'SupplySans';
    font-weight: normal;
    font-style: normal;
    src: url('./assets/fonts/PPSupplySans-Regular.ttf') format('truetype');
}

* {
    font-family: "SupplySans", monospace;
    font-size: 12pt;
}

/* Make body and html take up full height */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: sans-serif;
}

/* Fullscreen video background */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Overlay container for button */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Button styling */
.cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 24px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: white;
  color: black;
}
