* {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

body {
    background: #000;
    color: #fff;
    font-family: Nunito, sans-serif;
    font-size: 1rem;
    background: url('../images/background.jpg') no-repeat #000;
    background-size: cover;
    background-attachment: fixed;
}

::selection {
    color: #fff;
    background: #fff;
}

::-moz-selection {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
}

a {
    color: #fff;
}

.cursor {
    cursor: pointer;
}

.hidden {
    display: none;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

#star-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(27, 39, 53, 0.437) 0%, rgba(9, 10, 15, 0.437) 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 100%;
    }
}

#menu {
    position: fixed;
    top: 16px;
    left: 16px;
}

.menu-item {
    margin-right: 10px;
}

#menu-container {
    padding: 16px;
    backdrop-filter: blur(2px);
}

#menu-container label {
    display: block;
}

#station-select, #volume {
    margin-bottom: 16px;
}

#station-select {
    padding: 7px 4px;
    border: 1px solid #333;
    border-radius: 4px;
}

#player {
    backdrop-filter: blur(2px);
    transition: all 1000ms;
    /* text-transform: capitalize; */
}

#player #control {
    position: relative;
}

#player #art {
    width: 100%;
    opacity: 1;
}

#player.stopped #art {
    opacity: 0.473;
}

#player #control-play {
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    text-align: center;
}

#player #control-play.fa-stop {
    display: none;
}

#player #control:hover #control-play.fa-stop {
    display: block;
}

#player.big {
    width: 100%;
    max-width: 480px;
    margin: 12% auto 0;
    font-size: 1.347rem;
}

#player.big #control-play {
    top: 30%;
    font-size: 11rem;
    text-shadow: 0 16px 43px rgba(0, 0, 0, 0.743);
}

#player.big #info {
    padding: 16px;
}

#player.small {
    position: fixed;
    bottom: 16px;
    left: 16px;
    font-size: 1rem;
    padding-right: 16px;
}

#player.small #control, #player.small #info {
    display: inline-block;
}

#player.small #control {
    max-width: 96px;
}

#player.small #control-play {
    top: 30%;
    font-size: 2rem;
    text-shadow: 0 8px 21px rgba(0, 0, 0, 0.743);
}

#player.small #control, #player.small #info {
    vertical-align: middle;
}

#player.small #info {
    margin-left: 16px;
}

#bg-copy {
    position: fixed;
    bottom: 16px;
    right: 16px;
    font-weight: 300;
    font-size: 0.743rem;
    text-align: right;
}

#loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 25%;
    background: #000;
    font-size: 2em;
    text-align: center;
    text-transform: uppercase;
    z-index: 9999;
}

#loading p {
    opacity: 0;
}