body {
  text-align: center;
  font-size: 20px;
  color: #bc153b;
  background-image: url("background.jpg");
  font-family: serif, sans-serif;
}

.content {
  background-color: #00090d;
  width: 75%;
  min-width: 600px;
  min-height: 1100px;
  margin: auto;
  border-radius: 10px;
}

h1 {
  padding-top: 30px;
}

img {
  height: 300px;
  border-radius: 50%;
}

.txtclr:hover, .txt:hover, .link:hover {
  color: red
}

.txtclr {
  transition: color 0.15s ease;
}

.txt {
  margin-top: 10px;
  font-style: italic;
  transition: color 0.15s ease;
  font-size: 18px;
}

.links {
  margin-top: -20px;
}

.link {
  margin: 0px;
  transition: color 0.15s ease;
  color: #c03657;
}

h2 {
  margin-top: 50px;
}

.disclaimer {
  font-style: italic;
  font-size: 12px;
  margin-top: -5px;
  margin-bottom: 0px;
}

.audio {
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -55px;
  color: #bc153b;
  padding: 15px 25px;
  border-radius: 50px;
  width: fit-content;
  font-family: 'Inter', sans-serif;
}

.play-btn {
  background: #bc153b;
  border: none;
  color: #00090d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 15px;
  transition: transform 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.1);
  background: red;
}

.track-info {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.track-name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.progress-container {
  height: 4px;
  width: 100%;
  background: #444;
  border-radius: 2px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #bc153b;
  border-radius: 2px;
}
