.weekly-song {
  border: groove 2mm;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1025px;
  color: white;
  background-color: black;
}

.content {
  display: flex;
  position: absolute;
  width: 100%;
  transition: transform 0.5s linear;
  height: 100%;
}

.sotw-wrapper {
  display: flex;
  justify-content: center;
  height: 410px;
  gap: 10px;
}

.lastfm-wrapper {
  border: white groove 2mm;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  max-width: 581px;
  overflow: auto;
  background-color: #212121;
}

.sotw-title {
  color: white;
  text-align: left;
  width: 100%;
  background-color: #2a2a2a;
  padding: 0px 21px;
  margin-bottom: 40px;
  display: flex;
  height: fit-content;
  max-width: 800px;
  border: groove black 3mm;
  box-sizing: border-box;
  position: relative;
}

.collection-container {
  width: 100%;
  max-width: 1280px;  
  position: relative;
  height: fit-content;
  margin-top: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background: black;
  box-sizing: border-box;
  border: groove 3mm;
  color: white;
}

.collection {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 30px;
  position: relative;
}

.collection-album-art {
  width: 100%;
  border: black groove 1vw;
  box-sizing: border-box;
}

h4 {
  font-family: "Archivo Black", sans-serif;
}

.content-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 330px; 
}

.throbber {
  width: 100%;
  align-content: center;
}

.hidden {
  visibility: hidden;
  position: absolute;
}

.next-button, .prev-button, .start-button, .end-button {
  text-align: center;
  background-color: white;
  box-sizing: border-box;
  border: outset white 1mm;
  text-decoration: none;
  color: black;
  width: 35px;
  align-content: center;
  user-select: none;
  margin: 0 3px;
}

.slide-in-left {
  transform: translateX(-100%);
}

.slide-in-right {
  transform: translateX(100%);
}

.current {
  transform: translateX(0);
}

.disabled {
  opacity: 0.5;
}

.text-content {
  flex: 2;
  padding-right: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.text-content a {
  color: lightseagreen;
}

.text-content a:hover {
  text-shadow: 0 0 10px lightseagreen,0 0 15px white;;
}

.album-art {
  flex: 1;
  align-content: center;
}

.album-art img {
  width: 100%;
  height: auto;
}

.item-info {
  position: sticky;
  top: 25%;
  color: white;
}

.controls {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  height: 35px;
}

button {
  padding: 10px;
  border: 1px solid black;
  cursor: pointer;
  background-color: #fff;
}

.listen-button {
  flex-grow: 1;
  margin: 0 25px;
  text-align: center;
  background-color: white;
  box-sizing: border-box;
  border: outset white 1mm;
  text-decoration: none;
  color: black;
  align-content: center;
}

@keyframes spin {
    from {
    transform: Rotate(0deg);
  }

  to {
    transform: Rotate(360deg);
  }
}

@media (max-width: 768px) {
  .collection {
    gap: 0;
  }
  .sotw-wrapper {
    flex-direction: column;
    height: fit-content;
  }
  .lastfm-wrapper {
    height: 165px;
  }
}
