html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
.profile-pic {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: rgb(255, 255, 255);
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}
.overlay h1 {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 2.5rem;
  text-align: center;
}
.music-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 960px;
  width: 100%;
  margin-bottom: 40px;
}
.music-item {
  flex: 0 0 48%;
  box-sizing: border-box;
}
.music-title {
  font-weight: bold;
  margin-bottom: 5px;
}
audio {
  width: 100%;
  outline: none;
}
.bio {
  max-width: 600px;
  margin: 40px auto 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  min-height: 150px;
}

