
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #fff;
    background-color: #000;
    font-size: 1.5em;
}

*:focus {
    outline: none;
}

#home {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    color: #0099CC;
}

#search {
    position: absolute;
    top: calc(50% + 1em + 25px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #111;
    border: 0;
    padding: 10px 25px;
    font-size: 0.8em;
    width: calc(100% - 40px);
    max-width: 500px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    z-index: 100;
    transition: all .7s ease-in-out;
}

#results {
    display: none;
}

.selected {
    background-color: #222;
}

#blank {
    height: calc(0.8em + 30px);
}

b {
    font-size: 1.3em;
    color: #0099CC;
}

.explicit {
    font-size: 1.3em;
    color: rgba(255,255,255,0.5);
    margin-left: 5px;
}

#cover {
    width: 100%;
}

#result > table {
    margin: 10px;
    width: calc(100% - 20px);
}

#stream,#stop {
    height: 40px;
    cursor: pointer;
}

#progress {
    position: fixed;
    height: 5px;
    left: 0;
    bottom: 0;
    background-color: #0099CC;
}

#stop {
    display: none;
}

#new {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7em;
    text-decoration: underline;
    color: #777;
    cursor: pointer;
}