.instrument-serif-regular {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .instrument-serif-regular-italic {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
  }

.playlist-container {
    width: 60%;
    margin: 0 auto;
    top: 120px;
    position: relative;
    padding: 2rem 0;
}

.song-row {
    width: 100%;
    height: 70px;
    min-height: 70px;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #75726e5a;
    transition: background-color 0.2s ease;
}

.song-row:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.song-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}

.song-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-name {
    flex: 1;
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.song-duration {
    width: 60px;
    flex-shrink: 0;
    text-align: right;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.location {
    width: 200px;
    flex-shrink: 0;
    color: #a0a0a0;
    font-size: 0.9rem;
}

h1 {
    font-style: normal;
    font-size: 7rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #fff2df;
}

body {
    background-color: rgb(29,29,31);
}

footer {
    position: fixed;
    bottom: 80px;
    width: 100%;
    padding-top: 2rem;
    border-top: 2px solid #84807bb3;
}

.song-button {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    color: white;
    text-align: left;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.song-button:hover {
    opacity: 0.8;
}

.song-button:active {
    opacity: 0.6;
}

.song-button h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.song-button audio {
    display: none;
}

.song-row p {
    margin: 0;
    line-height: 1.4;
}

