body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: system-ui, -apple-system, sans-serif;
  color: #fff;
}

.video-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content-inner {
  max-width: 740px;
  padding: 2rem;
  margin-top: 100px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  opacity: 0.85;
}
footer {
    position: absolute;
	font-family:'Trebuchet MS',sans-serif;
	bottom: 0.3rem;
	right: 0.7rem;
	width: 90%;
    z-index: 1;
    color: #888;
    text-align: right;
    padding: 1rem;
    font-size: 0.9rem;
}
.text-outline {
  text-shadow:
    -1px 0 black,
     0 1px black,
     1px 0 black,
     0 -1px black,
    -1px -1px black,
     1px -1px black,
    -1px  1px black,
     1px  1px black;
}
a:hover, a:visited, a:link, a:active
{
    color: #888;
    text-decoration: none;
}