body {
    background-image: url("img/bg.png");
    background-size: cover;
    background-color: rgb(0, 0, 0);
  }


.center {
    display: block;
    margin: auto;
    width: 40%;
  }

.center2 {
    display: block;
    margin: auto;
    width: 35%;
  }

.container {
    display: flex;
    padding-right: 450px;
    padding-left: 450px;
  }
  
.item {

    height: 100px;
    flex: 1;
  }

  .item2 {
    border: 50px solid #ccc;
  }



  /* Style for the menu */
  #myMenu {
    display: none; /* Hide the menu by default */
    border: 1px solid #ccc;
    padding: 10px;
    position: absolute;
    top: 30px;
    left: 0;
    background-color: #000000;
    color: #ffffff;
    border-radius: 15px;

}

/* Style for the button */
#toggleButton {
    cursor: pointer;
    padding: 10px;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 15px;

}

  /* Style for the image */
  #myImage {
    display: none; /* Hide the image by default */
    max-width: 100%;
    height: auto;

  }

  /* Custom styling for the audio player */
  #audioPlayer {
    width: 210px;
    margin-top: 20px;
    background-color: #000000;
    border: 1px solid #fff;
    border-radius: 10px;

}

#playPauseBtn {
    background-color: #000000;
    color: #fff;
    border: 0px solid #fff;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 15px;
}


#volumeControl {
    width: 80%;
    -webkit-appearance: none;
    height: 5px;
    background: rgb(255, 255, 255);
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 5px;
}


#volumeControl::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}


#volumeControl:hover {
    opacity: 1;
}

/* Media query for smaller screens (mobile) */
@media screen and (max-width: 480px) {
  #audioPlayer {
      width: 100%; /* Full width for small screens */
  }

  body {
      padding: 10px; /* Add some padding to the body for better spacing */
      overflow-x: hidden; /* Disable horizontal scrolling */
      overflow-y: hidden; /* Disable vertical scrolling */
    }

  .imgm {
     /* Make images fill their container */
      height: 100%; /* Maintain aspect ratio */
      width: 100%;
  }

  .imgm2 {
    /* Make images fill their container */
     height: 25px; /* Maintain aspect ratio */
     width: 100%;
 }

 .center3 {
  padding: 100px;
  display: block;
  margin: auto;
  height: 140%;
  width: 35%;
}

}