* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body video {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
body .overlay {
  z-index: 1;
  background: radial-gradient(200px at var(--x, 400px) var(--y, 400px), transparent, black);
  opacity: 0.8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .overlay h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: transparent;
  background: radial-gradient(150px at var(--x) var(--y), rgb(255, 116, 30), transparent);
  background-attachment: fixed;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 400px;
}/*# sourceMappingURL=style.css.map */