body {
    background-color: #030d3a;
    color: #ecd053;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.player {
    background: #030d3a;
    padding: 0px;
    border-radius: 0px;
    text-align: center;
    box-shadow: 0 0 0px #ecd053;
  width:300px;
}

h2 {
    margin-bottom: 10px;
}

#trackTitle {
    margin: 10px 0;
    font-size: 10px;
  font-family: monospace;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

button {
    background: #030d3a;
    border: solid #ecd053 1px;
    color: #ecd053;
    padding: 10px 15px;
    font-size: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #ecd053;
}

input[type="range"] {
    margin: 10px;
    accent-color: #ecd053;
 
}