* {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    color: white;
}

body {
    background-color: black;
}

.player {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: black;
    padding: 20px;
    width: 100hv;
    height: 100hv;
}

.controls button {
    border-color: white;
    background-color: black;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    border-style: ridge;
    border-width: 1px;
    font-size: large;
    padding: 2px
}

.controls button:hover {
    background-color: #424242;
}

#progress {
    width: 100%;
}

.audio-container {
    width: 50%;
}