@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto_regular.eot');
    src: url('../fonts/roboto/roboto_regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto/roboto_regular.woff') format('woff'),
         url('../fonts/roboto/roboto_regular.ttf') format('truetype'),
         url('../fonts/roboto/roboto_regular.svg#Roboto') format('svg');
    font-weight: normal;
    font-style: normal;
}

* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

*:hover{
    transition: 0.5s;
}

html{
    font-size: 62.5%;
}

a{
    text-decoration: none;
}

header{
    position: fixed;
    height: 50px;
    z-index: 2;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0px 2px 5px 0px rgba(32, 32, 32, 0.2);
}

#logo{
	margin-top: 7px;
    margin-left: 15px;
}

/* Mention légale */

#mention{
    width: 75%;
    margin: auto;
    left: 0;
    right: 0;
    top: 20px;
    position: relative;
    font-family: 'Roboto';
    padding-bottom: 50px;
    color: white;
}

@media only screen and (max-width:768px) {
    
    header{
        position: relative;
        background: none;
        box-shadow: none;
    }
}