/*-------------------------
	Simple reset
--------------------------*/


*{
    margin:0;
    padding:0;
}


/*-------------------------
	General Styles
--------------------------*/


html{
    /* This image will be displayed fullscreen */
    background:url('https://i1.sndcdn.com/artworks-000026321883-7rp0en-t500x500.jpg') no-repeat center center;

    /* Ensure the html element always takes up the full height of the browser window */
    min-height:100%;

    /* The Magic */
    background-size:cover;
}

body{
    /* Workaround for some mobile browsers */
    min-height:100%;
    font:14px/1.3 'Segoe UI',Arial, sans-serif;
}

a, a:visited {
    outline:none;
    color:#1c4f64;
}

a:hover{
    text-decoration:none;
}

section, footer, header{
    display: block;
}

header {
    top:0;
    position: fixed;
    width: 100%;
    height: 100px;
}

header h1 {
    margin:0;
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 24px;
    line-height: 1.4;
    display: inline;
    padding: 5px;
    background-color: #fff;
    font-weight: bold;
}

#stream-player {
    width:650px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -300px;
}

/*----------------------------
	The Footer
-----------------------------*/


footer{
    background-color: #111111;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,0.4);
    height: 45px;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 100000;
}

footer h2{
    margin-top:3px;
    color: #EEEEEE;
    font-size: 14px;
    font-weight: normal;
    left: 50%;
    margin-left: -400px;
    padding: 13px 0 0;
    position: absolute;
    width: 540px;
}


footer a,a:visited{
    color: #ccc;
    font-size: 12px;
    left: 50%;
    margin: 16px 0 0 110px;
    position: absolute;
    text-decoration: underline;
    top: 0;
}
footer a span {
    margin-right: 5px;
}

footer a:hover {
    text-decoration: none;
}

footer a i b{
    color:#c92020;
    font-weight: normal;
}