body, html {
    /* animation: fadeIn 1s ease-in-out forwards; */
    /* background-color: #ffbbf3; */
  }
  
  @keyframes fadeIn {
    0% {
      background-color: #ffbbf3;
    }
    50% {
      background-color: #bcd7ff;
    }
    100% {
      background-color: #fc9de9;
    }
  }
  

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    /* background-color: #f5f5f5; */
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 50px;
}

.album-description-container {
  position: relative;
  width: 94%;
  margin: 15px;
  box-sizing: border-box;
  background-color: white;
  border: 2px solid black;
  padding: 20px;
  max-width: 500px;
}

.album-description {
  margin: 0;
  transition: max-height 0.5s ease;
  line-height: 1.6;
  font-size: 1.05em;
}

.album-description.collapsed {
  max-height: 150px;
  overflow: hidden;
  position: relative;
}

.album-description.collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  pointer-events: none;
}

.see-more-btn {
  display: block;
  margin: 10px auto;
  background-color: white;
  border: 2px solid black;
  font-weight: bold;
  color: black;
  cursor: pointer;
  font-size: 0.9em;
  padding: 5px 15px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.see-more-btn:hover {
  background-color: #f0f0f0;
}

.see-more-btn:active {
  transform: translateY(1px);
}

main a {
    font-weight: bold;
    background-color: white;
    padding: 5px 10px;
    border: 2px solid black;
    margin-bottom: 10px;
    color: black;
    text-decoration: none;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

table {
    border-collapse: collapse;
    width: 90%;
    margin-bottom: 20px;
    margin: 0 auto;
    table-layout: fixed;
    text-align: center;
    display: table;
    border: 2px solid black;
}

tr {
    border: none
}

th {
    border: none;
    background-color: var(--bg-2);
    padding: 10px;
}

tr:nth-child(odd) {
    background-color: #f7faf9;
}

td {
    border: none;
    padding: 10px;
}

.embeds {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.album-cover {
    width: 500px;
    max-width: 90%;
    border: 2px solid black;
}

iframe {
    max-width: 95%;
}

.table-container {
    width: 600px;
    max-width: 100vw;
}

.credits h3 {
    text-align: center;
}