/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Apply black background */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #000; /* Black background */
  color: #FFD700; /* Golden text color */
}

/* Center the message */
.container {
  text-align: center;
  padding: 20px;
  background-color: #000;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.5); /* Golden shadow effect */
}

/* Style the heading */
h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #FFD700; /* Golden text */
}

/* Responsive styling */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
}
