/* Reset default margins/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Make body fill the viewport */
body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

/* Video container fills the screen */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Fullscreen background video */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Semi-transparent overlay for readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Centered content */
.content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
}

.content h1 {
  font-family: "BBH Bogle", serif;
  font-size: 3em;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.5em;
  color: goldenrod;
}

.content a {
  color: yellow;
}

.content ul {
  list-style-type: none;
  line-height: 2em;
}

.content p {
}

/* Responsive font sizing */
@media (max-width: 768px) {
}

/* Button style */
.button {
  background-color: lightgray;
  border: none;
  border-radius: 12px;
  color: black;
  padding: 10px;
  margin: 1em;
  font-size: 1.5em;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

.button a {
   text-decoration: none;
   color: black;
}