body {
	background: linear-gradient(to top, #db4e4e, #b48966);
    font-family: monospace;
    max-width: 1100px;
    margin: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 1px;

    background-attachment: fixed;
    background-repeat: no-repeat;
}



h1 {
	font-family: "Doto";
    font-weight: 900;
	font-size: fit-content;
	line-height: 1.2;
	letter-spacing: 1px;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

.header {
    padding: 20px;
    border: 1px dashed white;
}

.content {
    padding: 20px;
    border: 1px dashed white;
    margin-top: 20px;
    max-width: 1100px;
    color: white;
    font-family: monospace;
    position: relative;
}



.close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: rgba(255, 255, 255, 0.438);
    border: none;
    color: white;
    font-size: 18px;
    font-family: "Doto";
    cursor: pointer;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
    user-select: none;
}

.audio {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    font-family: monospace;
    background: gray;
}

.audio audio {
    width: 100%;
    display: block;
    background: transparent;
}

audio::-webkit-media-controls-enclosure {
    background: transparent;
    border-radius: 0;
    width: 100%;
}
audio::-webkit-media-controls-panel,
audio::-webkit-media-controls-mute-button,
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-timeline-container,
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display,
audio::-webkit-media-controls-timeline,
audio::-webkit-media-controls-volume-slider-container,
audio::-webkit-media-controls-volume-slider,
audio::-webkit-media-controls-seek-back-button,
audio::-webkit-media-controls-seek-forward-button,
audio::-webkit-media-controls-fullscreen-button,
audio::-webkit-media-controls-rewind-button,
audio::-webkit-media-controls-toggle-closed-captions-button
{
    font-family: "Doto";
    color: gainsboro;
    font-size: 1.5rem;
}

audio::-webkit-media-controls-timeline-container,
audio::-webkit-media-controls-panel {
    background: transparent;
    border-radius: 0;
    width: 100%;
}

.close-btn:hover {
    background-color: white;
    color: #d81818;
}

.track-header h3 {
    margin: 0;
    padding: 0;
    display: inline;
}

.track-controls {
    display: inline-block;
}

.track-controls button {
    background-color: rgba(255, 255, 255, 0.438);
    border: none;
    color: white;
    font-size: 18px;
    font-family: "Doto";
    cursor: pointer;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
    user-select: none;
}

.track-thumbnail {
    width: 170px;
    position: relative;
    height: 100px;
    margin-bottom: 2px;
    object-fit: cover;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.438);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.track-thumbnail img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    border-radius: 10px;
    filter: opacity(0.5);
}

.track-thumbnail:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}

.track-waveform-bg, .track-waveform-fg {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

.track-waveform-bg {
    bottom: 0;
    left: 0;
    filter: opacity(0.3);
}

.track-details {
    position: relative;
}

.track-waveform-fg {
    position: absolute;
    bottom: 0;
    left: 0;
    clip-path: polygon(0% 0%,0% 0%,0% 100%,0% 100%);
    filter: opacity(1);
}

.track-thumbnails {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  justify-content: center;
  gap: 1em;
}

.track-description {
    color: rgba(255, 255, 255, 0.85);
    font-family: "Rubik", monospace;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
    font-style: italic;
}