body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    background-color: #17120e;
    color: #dbb69c;
}

.header {
    text-align: center;
    margin: 0.5em;
    margin-top: 1.5em;
    font-size: 4em;
    color: #f3cdaf;
    text-decoration: underline;
    letter-spacing: 0.1em;
}

.player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cover {
    width: 30em;
    border-radius: 3em;
    margin-bottom: 2.5em;
    border: #2e251c 0.2em solid;
    box-shadow: 0 0.4em 0.7em #0e0b08;
    transition: transform 0.2s ease-in-out;
    transform-origin: center;
    will-change: transform;
}

.cover:hover {
    transform: scale(1.05);
}

.info {
    align-self: flex-start;
    margin-left: 1em;
    margin-bottom: 2em;
}

.title {
    font-size: 2.5em;
}

.artist {
    font-size: 1.8em;
    margin-left: 1em;
    color: #bd9c84;
}

.progress-bar {
    width: 85%;
    margin-bottom: 1.2em;
    appearance: none;
    height: 0.21em;
    border-radius: 10%;
    background-color: #bd9c84;
    cursor: pointer;
    transition: 0.2s;
}

.progress-bar:hover {
    box-shadow: 0 0 0.3em #bd9c84;
}

.progress-bar::-moz-range-thumb, .progress-bar::-webkit-slider-thumb {
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background-color: #2e251c;
    border: #bd9c84 0.2em solid;
    cursor: pointer;
    transition: box-shadow 0.2s ease-in-out;
}

.progress-bar::-webkit-slider-thumb { /* ewww chrome?! /j */
    appearance: none;
}

.progress-bar:hover::-webkit-slider-thumb, .progress-bar:hover::-moz-range-thumb {
    box-shadow: 0 0 0.3em #bd9c84;
}

.time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 94%;
    font-size: 1.4em;
    color: #bd9c84;
    margin-bottom: 1.6em;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 67%;
}

.control {
    font-size: 2em;
    color: #dbb69b;
    background-color: transparent;
    border: #2e251c 0.15em solid;
    border-radius: 50%;
    cursor: pointer;
    width: 2.5em;
    height: 2.5em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transform-origin: center;
    will-change: transform;
}

.control:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0.3em #2e251c;
}