body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
}

h1 {
  font-size: 3em;
  color: #FFD700; /* Golden color */
  margin-bottom: 10px;
}

p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2em;
  color: #000;
  background-color: #FFD700;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

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

.qr-section {
  margin-top: 30px;
}

.qr-section img {
  margin-top: 10px;
  width: 150px;
  height: 150px;
}