body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
}

/* Background image */
body {
  background-image: url('landing-page.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Button style (hidden but clickable) */
.enter-button {
  position: absolute;
  bottom: 50px;       /* 50px from bottom */
  left: 50%;          /* center horizontally */
  width: 350px;   /* make it wider */
  height: 100px;   /* make it taller */
  transform: translateX(-50%);
  
  display: inline-block;
  padding: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;

  /* Make invisible but clickable */
  opacity: 0;         /* hides the button visually */
  pointer-events: auto; /* still clickable */
}

/* Hover effect - won't be visible but kept for code completeness */
.enter-button:hover {
  background-color: white;
  color: black;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .enter-button {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

