@font-face {
    font-family: 'antonioregular';
    src: url('antonio-regular-webfont.eot');
    src: url('antonio-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('antonio-regular-webfont.woff') format('woff'),
         url('antonio-regular-webfont.ttf') format('truetype'),
         url('antonio-regular-webfont.svg#antonioregular') format('svg');
    font-weight: normal;
    font-style: normal;

}




body {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: #242424;
}
.container {
    margin: 0px auto;
    max-width: 1024px;
    width: 100%;
    height: 100%;
    font-family: 'antonioregular';
}
video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    opacity: 0.5;
}





/* HEADER */

header {
    padding: 0;
    margin: 0;
    height: 80px;
    width: 100%;
    position: fixed;
    top: -75px;
    left: 0;
    background: #242424;
    -webkit-transition: .5s;
    z-index: 99999;
}

    header:hover {
        height: 80px;
        width: 100%;
        top: 0px;        
        background: #242424;
        -webkit-transition: .5s;
    }

#logo{
    position: absolute;
    width: 60px;
    height: 60px;
    top: 90px;
    left: 10px;
    -webkit-transition: .5s;
    cursor: pointer;
    opacity: 0.5;
}

    header:hover #logo {
            position: absolute;
            width: 60px;
            height: 60px;
            top: 10px;
            left: 10px;
            -webkit-transition: .5s;
        }


#burger{
    position: absolute;
    width: 60px;
    height: 60px;
    top: 90px;
    right: 10px;
    -webkit-transition: .5s;
    cursor: pointer;
    opacity: 0.5;
}

    header:hover #burger {
            position: absolute;
            width: 60px;
            height: 60px;
            top: 10px;
            right: 10px;
            -webkit-transition: .5s;
            opacity:0;
        }

header>ul {
    display: block;
    margin: 10px auto;
    text-align: center;
    color: white;
}
header>ul>li {
    display: inline;
}
header>ul>li>a {
    width: 100px;
    display: inline-block;
    text-decoration: none;
    color: white;
    margin: 10px;
    padding: 10px;
    font-size: 1.1em;
}
header>ul>li>a:hover {
    border-bottom: 2px solid;
}





 /* MAIN */


main {
    color: #ffffff;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

main h2 {
    font-size: 2em;
    text-align: center;
    border: 4px solid;
    display: block;
    padding: 10px;
    margin: 100px auto 100px;
    width: 150px;
}

main p {
    font-family: 'Droid Sans Mono';
}

main a {
    text-decoration: none;
    color: #ffffff;
    border-bottom: 1px dotted #ffffff;
    font-family: 'Droid Sans Mono';
}
a.retour {
    border: 1px solid;
    display: inline-block;
    padding: 5px;
    margin: 10px auto;
}
a.fin {
    margin: 10px auto 100px;
}
a.retour:hover {
    color: #242424;
    background: #ffffff;
}
main>p.last {
    margin: 0 0 100px 0;
}



/* FOOTER */



#mute {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0.5;
}

#mute.on {
    background: url(img/muteOn.svg);
    background-size: cover;
}

#mute.off {
    background: url(img/muteOff.svg);
    background-size: cover;
}