/* Reset and base styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0a0e17;
    color: #fff;
    overflow: hidden;
  }
  
  /* Background wrapper */
  .background {
    position: fixed; /* fixed helps on mobile and desktop */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('905650.jpg') no-repeat center center;
    background-size: cover;
  }
  
  /* Optional dark overlay for contrast */
  .background::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  /* Main content */
  .content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  p {
    font-size: 1.2rem;
    color: #eaeaea;
    margin-bottom: 30px;
  }
  
  button {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  button {
    position: relative; /* allow moving via JS */
    transition: all 0.3s ease;
    z-index: 3;
  }
  
  
  button:hover {
    background-color: #f78fc8;
  }

  
  
  /* Mobile Responsive */
  @media (max-width: 600px) {
    h1 {
      font-size: 2rem;
    }
  
    p {
      font-size: 1rem;
    }
  
    button {
      font-size: 0.9rem;
      padding: 12px 20px;
    }
  }
  