body {
    margin: 0;
    font-family: Arial;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: url('wand.png'), auto;
  }
  
  button {
    font-size: 1.2rem;
    background: none;
    border: none;
    padding: 0;
    color: white;
    cursor: url('wand.png'), auto;
    transition: 0.3s;
    margin: 0 10px;
  }

  #start-quiz {
    font-size: 2rem; 
  }
  
  .info-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: lightgray;
  }
  
  h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 5px aqua;
    pointer-events: none;
    animation: fade 1s ease-out;
  }
  
  @keyframes fade {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  