body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: #fff;
  text-align: center;
}

header {
  padding: 30px 10px;
  font-size: 22px;
}

footer {
  padding: 30px 10px;
  height: 40px;
}

.albums {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.album {
  width: 180px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.album img {
  width: 100%;
  border-radius: 10px;
}

.album:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

.album-title {
  margin-top: 10px;
}

.tracks {
  max-width: 500px;
  margin: 30px auto;
  text-align: left;
}

.tracks h2 {
  text-align: center;
}

.track {
  margin-bottom: 20px;
  overflow: hidden;
}

audio {
  width: 100%;
  max-width: 100%;
  height: 32px;
  box-sizing: border-box;
  filter: invert(1) hue-rotate(180deg);
}

/*Картинка доната...*/
.donate-pig {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 90px;
  z-index: 1000;
}

.donate-pig img {
  width: 100%;
  display: block;
}

.donate-pig .hover {
  position: absolute;
  bottom: 40px;
  left: 60px;
  width: 70px;
  opacity: 0;
  transition: opacity 0.3s;
}

.donate-pig:hover .hover {
  opacity: 1;
}
/*...Картинка доната*/

/*На телефоне*/
@media (max-width: 768px) {
  .donate-pig {
    width: 60px;
    left: 10px;
    bottom: 10px;
  }
}
