*{
    margin:0px;
    font-family: sans-serif;
}

header{
    background-color: #303030 ;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin: auto;
}

#logo{
    margin-right: 20px;
    width:120px;
    height:40px;
    margin-top: 30px;
}

.dropbtn {
    background: #1a365d;
    color:beige;
    padding:16px;
    font-size: 16px;
    border: none;
    border-radius: 10%;
    margin-left:10px;
    margin-top: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
    padding: 20px 0px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a365d;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a{
    color: beige;
    padding: 12px 16px;
    text-decoration: none;
    display: block
}

.dropdown-content a:hover {background-color: #96c0e0;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #96c0e0;}


.container {
    position: relative;
    display:flex;
    align-items: flex-start;
}

#background-image {
    position: absolute;
    height: auto;
    width: 100%;
}


.titre-site {
    display:flex;
    position: relative;
    align-items: flex-start;
    justify-content: center;
    left: 80px;
    top: 40px;
    background-color: rgba(31, 100, 165, 0.5) ;
    padding: 20px;
    border-radius: 10px ;
    font-family: 'ansonregular'
}

@font-face {
    font-family: 'ansonregular';
    src: url('fonts/anson-webfont.woff2') format('woff2'),
         url('fonts/anson-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



footer {
    height: 40px;
    width: 100%;
    background-color: #303030;
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    color: beige
}