
body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  color: white;
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

h1 {
  font-size: 4em;
  text-shadow: 0 0 10px #FFD700;
}

.slogan {
  font-size: 1.5em;
  margin: 20px 0;
}

.btn {
  padding: 15px 30px;
  font-size: 1.2em;
  background-color: #FFD700;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 10px black;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #FFC300;
}
