body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('image/banner.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  /* Rest of your existing styles */
  
  .intro {
    text-align: center;
    margin-bottom: 20px;
  }

  h1,p{
    color: white;
  }

  .buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .singer-button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: aliceblue;
    border: none;
    cursor: pointer;
    border-radius: 50px;
  }
  .singer-button a {
    color: white;
    text-decoration: none;
    text-decoration-line: none;
  }
  
  .music-list {
    display: none;
    flex-direction: column;
    align-items: center;
  }
  
  .music-item {
    margin: 5px;
    cursor: pointer;
  }
  
  .music-item:hover {
    text-decoration: underline;
  }
  
  #audioPlayer {
    display: none;
  }
  