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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.video-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
}

main {
  text-align: center;
  z-index: 1;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  opacity: 0.6;
}
