*{
    padding: 0;
    margin: 0;
}

body{
    font-family: sans-serif;
}

#barre1{
    display: flex;
    justify-content: space-between;
    margin: 0 20px 20px 20px;
}

h1{
    border: 1px solid black;
    width: max-content;
    padding: 15px;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
}

nav{
    display: flex;
}

nav a{
    text-decoration: none;
    color: black;
    text-transform: capitalize;
    padding: 20px 20px;
}

/*A partir d'ici commence la parti fond indigo*/

#imgtitres{
    height: 400px;
    background-color: indigo;
    display: flex;
    justify-content: center;
}

#imgtitres img{
    width: 400px;
    height: 350px;
    margin: 25px 20px 25px 0;
}

#imgtitres h2{
    width: max-content;
    background-color: darkblue;
    color: white;
}

#titresdos{
    margin: 100px 0 20px 0;
}

#imgtitres p{
    width: max-content;
    color: white;
}

#button{
    width: 130px;
    height: 50px;
    background-color: brown;
    border-radius: 15px;
    margin-top: 25px;
}

#button p{
    padding: 15px;
}

#button:hover{
    cursor: pointer;
    background-color: violet;
    transition: 0.3;
}

/*Footer*/

footer{
    display: flex;
    justify-content: space-around;
    background-color: grey;
    height: 200px;
}

footer section{
    padding-top: 20px;
}

footer section h2{
    margin-bottom: 15px;
}

footer section p{
    margin-bottom: 10px;
}

#imglogo img{
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: 20px;
    margin-right: 20px;
}

#icon3 img{
    margin-top: 10px;
    margin-right: 20px;
}