body {
    margin: 0;
    padding: 0;
}

#woman {
    top: 0px;
    left: 0px;
    position: fixed;
    width: 100vh;
    height: 100vh;
    background-image: url(57471928_xxl_phone.jpg);
    background-size: auto 100%;
    z-index: -1;
    background-repeat: no-repeat;
    display: none;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #6FA0DF;
    /* change if the mask should have another color then white */
    z-index: 99;
    /* makes sure it stays on top */
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    /* centers the loading animation horizontally one the screen */
    top: 50%;
    /* centers the loading animation vertically one the screen */
    background-image: url(ajax-loader.gif);
    background-size: 40% 40%;
    /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
    /* is width and height divided by two */
}

#start {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(57471928_xxl_o.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-color: black;
    transition: all 3s;
    z-index: -1;
    background-repeat: no-repeat;
}

#logo {
    display: block;
    margin-top: 30px;
    margin-left: 30px;
    max-width: 160px;
    transition: all 3s;
}

#live_info {
    position: fixed;
    bottom: 25%;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 150px;
}

#play_button {
    width: 150px;
    height: 150px;
    background-image: url(play.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: border-box;
    display: block;
    transition: all 0.3s;
    left: 30px;
    bottom: 25%;
    position: fixed;
}

#play_button_info {
    position: fixed;
    bottom: 27.6%;
    left: 180px;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 25px;
    color: white;
    text-shadow: 1px 1px 5px rgba(69, 69, 69, 0.79);
    transition: all 0.3s;
}

#social_icons {
    position: fixed;
    right: 30px;
    bottom: 30px;
}

#presenter_photo {
    display: inline-block;
    width: 100px;
    height: 100px;
    vertical-align: middle;
    border-radius: 10px;
    border: solid 3px white;
}

#presenter_name {
    margin-left: 40px;
}

#presenter_name_details marquee {

}

.icon {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    margin: 4px;
    width: 96px;
    height: 96px;
    font-size: 0;
    text-indent: -9999px;
}

.icon-cube {
    position: relative;
    -webkit-perspective: 800px;
    perspective: 800px;
    overflow: visible;
}

.icon-cube::before,
.icon-cube::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("icons5.png");
    background-image: url("icons5.svg"), none;
    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.icon-cube::before {
    z-index: 2;
    background-color: #595959;
}

.icon-cube::after {
    z-index: 1;
    opacity: 0;
    -webkit-transform: translateY(48px) rotateX(-90deg);
    transform: translateY(48px) rotateX(-90deg);
}

.icon-cube:hover::before {
    opacity: 0;
    -webkit-transform: translateY(-48px) rotateX(90deg);
    transform: translateY(-48px) rotateX(90deg);
}

.icon-cube:hover::after {
    opacity: 1;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}


/* facebook */

.icon-cube.facebook::before,
.icon-cube.facebook::after {
    background-position: 0 0;
}

.icon-cube.facebook::after {
    background-color: #3b5998;
}


/* twitter */

.icon-cube.twitter::before,
.icon-cube.twitter::after {
    background-position: -96px 0;
}

.icon-cube.twitter::after {
    background-color: #4099ff;
}


/* google plus */

.icon-cube.googleplus::before,
.icon-cube.googleplus::after {
    background-position: -192px 0;
}

.icon-cube.googleplus::after {
    background-color: #d34836;
}


/* github */

.icon-cube.github::before,
.icon-cube.github::after {
    background-position: -288px 0;
}

.icon-cube.github::after {
    background-color: #333333;
}


/* rss */

.icon-cube.rss::before,
.icon-cube.rss::after {
    background-position: -384px 0;
}

.icon-cube.rss::after {
    background-color: #ee802f;
}

@media only screen and (max-width: 800px) {
    #logo {
        display: block;
        margin-top: 10px;
        margin-left: 10px;
        max-width: 100px;
        transition: all 3s;
    }
    #live_info {
        height: 100px;
        bottom: 0;
    }
    #start {
        background-image: url(DSC_2403_o.JPG);
        background-position: left bottom;
        transition: all 1s;
    }
    #play_button {
        width: 100px;
        height: 100px;
        background-size: 100% 100%;
        transition: all 0.5s;
        left: 10px;
        bottom: 0px;
    }
    #play_button_info {
        position: fixed;
        bottom: 0%;
        left: 90px;
        font-family: sans-serif;
        font-weight: bold;
        font-size: 18px;
        color: white;
        text-shadow: 1px 1px 5px rgba(69, 69, 69, 0.79);
        transition: all 0.3s;
    }
    #presenter_photo {
        display: inline-block;
        width: 60px;
        height: 60px;
        margin-right: 10px;
        vertical-align: middle;
        border-radius: 10px;
        border: solid 3px white;
    }
    #en_direct {
        display: none;
    }
    #social_icons {
        position: fixed;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        right: 0px;
        top: 0px;
        z-index: 1;
        transition: all 0.3s;
    }
    #woman {
        display: block;
    }
}
