#stream {
    display: none; /* Hides the stream by default */
}

* {
    font-family: monospace;
    color: rgb(145, 255, 0);
    margin: 0;
    padding: 0;
}

body {
    background-color: #262626;
}

img {
    height: 5em;
}

header {
    background-color: #131313;
    display: flex;
    align-items: center;
    padding: 1em;
}

header h2 {
    padding-left: 1em;
}

header img {
    cursor: pointer;
    transition: transform 0.1s ease-in-out;
}

header img:hover {
    transform: rotate(-10deg);
}

input, button {
    border: solid 1px #363636;
}

button {
    background-color: #bbb;
    color: #000;
}

input, button:disabled {
    background-color: #000;
    color: #eee;
}

audio {
    aspect-ratio: 16/9;
    width: 75vw;
    max-height: 80vh;
    margin: 0 auto;
}

.buttons {
    display: inline-block;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.audio {
    display: flex;
    flex-direction: column;
    margin: 1em;
}

.audio .player {
    margin: 0 auto;
}

.controls {
    display: flex;
    padding-top: 1em;
    align-items: center;
    justify-content: space-between;
}

.controls .right {
    text-align: right;
}

.controls, .controls *, .controls * * {
    font-size: 1.1em;
}

.links {
    margin: 1em;
}

h1 {
    margin-top: 0;
}

h3 {
    padding-left: 1em;
}

.audio {
    margin: 1em;
}

.links {
    flex: 1;
}

.listing {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-y: scroll;
}

.listing li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.5em;
    width: 100%;
    font-size: 1.2em;
    line-height: 1.4;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-wrap: break-word;
}

.featured {
    margin-bottom: 2em;
    max-height: 10rem;
}

.random {
    max-height: 15rem;
}

.defaults h2 {
    margin-top: 0;
}

@media only screen and (max-width: 768px) {
    .controls .left {
        display: none;
    }

    .controls .right {
        text-align: center;
    }

    .container {
        flex-direction: column;
    }
}

.pb {
    position: absolute;
    top: 31.5vh;
    left: 38.5vw;
    font-size: 72px;
    text-shadow: 0px 0px 10px #FFFFFF;
}
