@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@1&display=swap');
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0px;
    padding: 0px;
    background-color: rgb(255, 255, 0);
}

/* Barre de navigation */
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: white;
    position: sticky;
    top: 0;
    background-color: yellow;
    height: 70px;
}
nav h1 img{
    margin-top: -40px;
    height: 100px;
    width: auto;
}
nav .onglets {
    display: flex;
    flex-wrap: wrap;
}

nav .onglets p{
    font-size: 17px;
    margin-right: 10px;
    cursor: pointer;
}

nav .onglets input{
    margin: 8px 20px;
    padding: 15px;
    border-radius: 30px;
    border: none;
    outline:none;
    background-color: #f2f2f2;
}
/* Fin de la barre de navigation */

/* Header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
header button{
    padding: 15px 20px;
    font-size: 20px;
    border: none;
    border-radius: 7px;
    outline: none;
    cursor: pointer;
}
/* Fin du Header */

/* Section principale */
.container{
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}
/* Fin de section principale */