body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif ;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f3f4f6;
  position: relative;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #4CAF50;
}

.title {
  margin: 20px 0;
  font-size: 2em;
  color: #fff; /* Make text readable */
}

.btn {
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  background: #4CAF50;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #45a049;
}


.music-player-container {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Adds a gap between the two music players */
  align-items: center;
}

.music-player {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  height: 100px;
  margin-bottom: 20px; /* Space between the players */
}

.music-player .song-info {
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
}

.music-player .song-info .album-art {
  width: 40px; /* Set the width of the album art */
  height: 40px; /* Set the height of the album art */
  margin-right: 10px; /* Space between the image and the text */
  border-radius: 5px; /* Optional: to make the image rounded */
}

.music-player .song-info div {
  display: flex;
  flex-direction: column;
}

.music-player .controls {
  display: flex;
  align-items: center;
}

.music-player button {
  background-color: #3498db;
  border: none;
  padding: 10px;
  margin: 0 5px;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.music-player button:hover {
  background-color: #2980b9;
}

.music-player audio {
  display: none;
}



.footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1em;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 0;
}

.quote {
  font-style: italic;
  margin: 0;
}

.copyright {
  margin: 5px 0 0;
  font-size: 0.9em;
}

