*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    cursor: url('images/curseur.png'), auto;
}

.fullscreen-video-container {
   position: relative;
   height: 100vh;
   width: 100vw;
   overflow: hidden;
   z-index: -1;
   display: flex;

}

.fullscreen-video-container video{
    position: absolute;
    width: auto;
    height: auto;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header{
    position: absolute;
    height: 15%;
    width: 99%;
    display: flex;
    z-index: 100;
    padding: 10px 30px;
    justify-content: end;
    align-items: center;
}


.navbar{
    float: left;
    z-index: 1;
}

.navbar a {
    position: relative;
    margin-left: 30px;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 20px;
    color: rgb(114,53,4);
}

.navbar a span{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: gold;
    z-index: -1;
    border-radius: 20px;
    border-bottom: 3px  solid rgb(165, 144, 22);
}

.navbar a:hover{
    color: rgb(196, 100, 23);
    cursor: url('images/curseur_appuie.png'), auto;
}

#logo {
    margin-left: -3.5%;
     margin-top: 0%;
    z-index: 1;
    width : 50%;
    height : 53%;
}