body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #ffffff; /* white text */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 0.5em;
  text-shadow: 0 0 10px #000000;
}

p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 2em;
  text-shadow: 0 0 8px #000000;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #00bfff; /* glowing blue */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 0 10px #00bfff;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  background-color: #009acd; /* slightly darker blue */
  box-shadow: 0 0 15px #009acd;
}
