* {
    padding:0;
    margin:0;
}
html {
    background-image:url(background.jpeg);
    background-size: 100% auto;
    height: 5000px;
    background-repeat: no-repeat;
}

.container {
    width: 100%;

    font-family: 'Fugue', Arial, sans-serif;
}

#radio {
    background: #fffaf6;
    min-height: 3rem;
    position: fixed;
    z-index: 997;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    outline: 1px solid #93918f;
    text-transform: uppercase;
    padding: 5px;
}

#radio .radio-row {
    display: flex;
    align-items: center;
}

#radio .radio-row .player-button,
#radio .radio-row .player-content2,
#radio .radio-row .player-content{
    flex: 0 0 auto;
    font-family: 'FugueTails', Arial, sans-serif;
}

#radio .radio-row .player-button {
    border-right: 1px solid #000;
}

#radio .radio-row .player-button audio {
    display: none;
    width: 0;
}

#radio .radio-row .player-button button {
    display: flex;
    align-items: center;
    color: currentColor;
    transition: color .6s cubic-bezier(.5,.1,.25,1);
    padding: .0625rem .5rem;
    width: 4rem;
    height: 4rem;
}

#radio .radio-row .player-button button svg {
    width: 100%;
    height: 100%;
}

#radio .radio-row .player-content {
    padding: .25rem 1rem .25rem .75rem;
}

#radio .radio-row .player-content a {
    border-bottom: transparent solid 1px;
    transition: border 0.2s;
}

#radio .radio-row .player-content a:hover,
#radio .radio-row .player-content a:focus {
    border-bottom-color: #000;
}

#radio .radio-row .player-content2 {
    border-left: 1px solid #000;
}

#radio .radio-row .player-content2 svg {
    width: 55px;
    padding: .5rem 1rem;
}

