body { 
    background-color: #000000; 
    display: flex;
    flex-direction: column;
    justify-content: center;  
    align-items: center;       
    min-height: 100vh;         
    margin: 0;
}

.headerthing {
    color: white;
    font-family: Courier New, monospace;
    text-align: center;
}
.plead {
	color: white;
	font-family: Courier New, monospace;
	text-align: center;
	height: auto;
	margin-top: 10px;
}
.tracklist {
    color: gray;
    font-family: 'Courier New', monospace;
    text-align: center;
    height: auto;
}
.current-track {
	color: white;
    font-family: Courier New, monospace;
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
}
.tracklist ul {
	color: white;
    display: inline-block; 
    text-align: left;     
    padding-left: 20px;   
    margin-top: 5px;
}
button {
    background-color: #4FC94F;
    font-family: Courier New, monospace;
    color: #000000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    margin: 5px;
    border-radius: 6px;
}

button:hover {
    background-color: #444444;
    color: #ffffff;
}

.Spongebob img {
    max-width: 100%;  
    height: auto;
}

.audio-controls {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

#volumeslider {
    accent-color: #4FC94F;
    width: 200px;
    margin-top: 15px;
} /* the volume slider itself */
#volumeslider {
    -webkit-appearance: none;
    appearance: none;
    width: 200px;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, #4FC94F 50%, #222222 50%);
    outline: none;
    cursor: pointer;
    transition: background 0.2s;
}

/* styles the little thumb thing */
#volumeslider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #4FC94F;
    cursor: pointer;
}

#volumeslider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #4FC94F;
    cursor: pointer;