html {
  scroll-behavior: smooth;
  background-color: #000000;
  background-image: url(./bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

  color: #eeeeee;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
body {
  margin: 0;
  padding: 0;
}
.logo {
  width: 100%;
}
img {
  border: none;
}
.album .image img {
  width: 256px;
  height: auto;
  opacity: 0.9;
}
h2 {
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 10px;
}
h6 {
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 10px;
}
.info {
  font-size: 14px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  color: #aaa;
}
a:hover img {
  transition: 0.5s ease;
  opacity: 0.5 !important;
}
.download-link {
  display: inline-block;
  border-bottom: 1px dashed;
  margin: 15px 0px;
}
.album {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 50px 0px;
}
.album .description {
  padding: 15px 30px;
}
.tracklst {
  display: block;
  margin: 0;
  padding: 0;
}
.tracklst li {
  margin: 10px 0px;
  list-style: none;
  display: block;
}
.tracklst li span {
  font-size: 12px;
  color: #999;
}
.tracklst li span:first-child {
  display: inline-block;
  width: 20px;
}
.tracklst li span:last-child {
  margin-left: 5px;
}

@media screen and (max-width: 640px) {
  .album {
    display: block;
  }
  .album .image img {
    width: 100%;
    height: auto;
  }
  .album .description {
    padding: 25px 0px;
  }
}
