
.album-box {
  align-items: start;
  width: 100%;
  background-color: #000;
  padding: 20px 20px;
  border-radius: 10px;
  border: 2px solid black;
  cursor: pointer;
  display: none;
  overflow-y:auto;
  /* Hide all divs by default */
  margin-top: 20px;
}

.autumne-box {}

.aura-box {}

/* Show the first div by default */
.album-box:first-of-type {
  display: block;
}

/* Show the targeted div and hide others */
#autumne-box:target {
  display: block;
}

#aura-box:target {
  display: block;
}

/* Hide the previous div when another is targeted */
#aura-box:target~#autumne-box {
  display: none;
}

#autumne-box:target~#aura-box {
  display: none;
}

.album-art {
  width: 300px;
  height: 300px;
}

.content {
  width: 600px;
  padding-left: 20px;
  margin-left: 20px;
}

.title {
  font-size: 24px;
  font-weight: bold;
}

.details {
  word-break: break-word;
  margin: 10px 0;
  font-size: 14px;
  color: #aaa;
}

.btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #785a4f;
  border: 2px solid #785a4f;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background-color: #785a4f;
  color: white;
}

.buttons {
  display: flex;
  gap: 25%;
}

.album-container{
  display: inline-flex;
}