* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    background-color: black;
    color: white;
    display: flex;
    user-select: none;
    font-family: monospace;
    font-size: 13pt;
}

.container {
    display: flex;
    margin: auto;
    flex-direction: column;
    text-align: center;
}

.flame {
    font-size: 80pt;
}

.track {
    margin-bottom: 0.4rem;
}

.track:hover {
    cursor: pointer;
    color: orangered;
}

.playing {
    color: orangered;
}

.player {
    display: flex;
    margin: 0.5rem 0 1.5rem 0;
}

.hidden {
    display: none;
}

#playPauseButton {
    cursor: pointer;
    width: 7rem;
    margin-right: 1rem;
    text-align: right;
}

#time {
    width: 7rem;
    margin-left: 1rem;
    text-align: left;
}

#progress {
    width: 100%;
    max-width: 15rem;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #636363;
    outline: none;
    cursor: pointer;
    margin: 7px 0 0 0;
}

#progress::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 16px; /* Set a specific slider handle width */
    height: 16px; /* Slider handle height */
    background: orangered; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border: none;
    border-radius: 100%;
}

#progress::-moz-range-thumb {
    width: 16px; /* Set a specific slider handle width */
    height: 16px; /* Slider handle height */
    background: orangered; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border: none;
    border-radius: 100%;
}

#progress::-moz-range-track {
    height: 30px;
    cursor: pointer;
}
