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

body,
html {
  height: 100%;
  font-family: "Courier New", Courier, monospace;
  color: #e0e0e0;
  background-color: #101010;
}

.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("alex.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: -1; /* Ensures the hero image stays behind the content */
}

.title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title-overlay h1 {
  font-size: 7rem;
  letter-spacing: 5px;
  color: #00ff00;
  text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

.title-overlay h2 {
  font-size: 1.5rem;
  color: #ffffff;
  text-shadow: 0 0 5px #ffffff;
}

.main-page-content {
  position: relative;
  z-index: 1; /* Makes sure the content is above the hero image */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 1));
  padding: 40px 20px;
  margin-top: 100vh; /* Ensures the content starts after the hero section */
}
.content {
  position: relative;
  z-index: 1; /* Makes sure the content is above the hero image */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 1));
  padding: 40px 20px;
  margin-top: 0; /* Ensures the content starts after the hero section */
}

.text-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}

p {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.typewriter-container {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.2em;
  color: #00ff00;
  line-height: 1.5;
  margin: 20px 0;
}

.blue-text-container {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.2em;
  color: #00ccff;
  line-height: 1.5;
  margin: 20px 0;
}

.neon-text {
  margin-top: 200px;
  font-family: "Arial", sans-serif;
  font-size: 50px;
  color: #ff00ff; /* Neon pink color */
  text-align: center;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff,
    0 0 40px #ff00ff, 0 0 80px #ff00ff, 0 0 90px #ff00ff, 0 0 100px #ff00ff,
    0 0 150px #ff00ff;
}

.choices {
  margin-bottom: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.choice-button {
  background-color: #00ff00;
  color: black;
  font-size: 1.2rem;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

.choice-button:hover {
  background-color: #00cc00;
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .title-overlay h1 {
    font-size: 2.2rem;
  }

  .title-overlay h2 {
    font-size: 1.2rem;
  }

  .choice-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
