:root{
    --c-light-bg:#6d5959;
    --c-bg:#403737;
    --c-dark-bg:#241f1f;
    --c-main:#ebaebf;
    --c-light:#f6d9df;
    --c-dark:#b26779;
}

@import url('https://fonts.google.com/specimen/Open+Sans');
@import url('https://fonts.google.com/specimen/Lustria?query=lustria');
  

html{
    margin: 0;
    padding: 0;
    font-size: 20px;
    max-width: 100%;
    overflow-x: hidden;

    font-family: 'Open Sans', sans-serif;
}

p{
    margin:0;
}

body{
    margin: 0;
    padding: 0;
    background-color: white    
}

.padding{
    padding: 0px 100px;
}

#navbar{
    background: var(--c-bg);
    margin-bottom: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
   

}

#logo{
    height: 150px;
    width: auto;
    margin: 10px;
}

#base-line{
    color: var(--c-main);
    /* font-weight: bold; */
    font-size: 30px;
    font-family: 'Lustria';
    margin-bottom: 10px;
}




#sur-titre{
    color: var(--c-dark);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 30px;
    
}

#titre{
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
    color: var(--c-dark);
    font-weight: bold;
}

#presentation{
    color: black;
    margin-bottom: 50px;
}

#arguments{
    margin-bottom: 20px;
    width: 40%;
}

#arguments div{
    margin-bottom: 10px;
}

#illustration{
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-img{
    min-width: 550px;
    width: 60%;
    max-width: 600px;
    height: auto;
}

.medium-img{
    min-width: 300px;
    width: 60%;
    max-width:400px;
    height: auto;
}

#txt-container{
    width: 50%;
}

.description{
    padding: 0 15%;
    margin-top: 40px;
    margin-bottom: 100px;
    text-align: center;
    font-weight: bold;
    color: var(--c-dark);
    font-size: 28px;
}

.arg::before{
    content: "•";
    color:var(--c-dark)
}

#pictogrammes{
    margin-top: 50px;
    background-color: var(--c-bg);
    display: flex;
    flex-direction: column;  
    padding: 5%;
}

#sur-picto{
    align-self: center;
    justify-self: baseline;
    color: var(--c-main);
    font-weight: bold;
    margin-bottom: 5%;
    font-size: 25px;
}

#picto-global-container{
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    padding: 0 10%;
}




.picto-container{
    width: 20%;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: baseline;
    row-gap: 20px;
}

.picto-pic{
    width: 70px;
    fill: var(--c-light);
}

.picto-desc{
    color: var(--c-main);
    font-weight: bold;
    text-align: center;
}

h3{
    color: var(--c-bg);
    font-weight: bold;
    font-size: 30px;
}

#lien-tel{
    color:var(--c-dark);
    transition: 0.1s linear;
}

#lien-tel:hover{
    color:var(--c-main);
}
    

#contacter{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--c-dark);
    font-weight: bold;
    margin-top: 50px;
    text-align: center;
}
.separation{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ligne{
    margin: 100px 0px;
    width: 40%;
    height: 2px;
    background-color: var(--c-bg);
}

.ligne-g{
    border-radius:  100% 0 0 100% 
}

.ligne-d{
    border-radius: 0 100% 100% 0 
}

.ligne-point{
    margin: 0 10px;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: var(--c-dark);
}

footer{
    background-color: var(--c-dark-bg);
    padding: 5% 10%;
    color: rgb(192, 192, 192);
    display: flex;
    font-size: 13px;
    flex-direction: column;
}

@media only screen and (max-width: 900px) {
    #illustration{
        flex-direction: column;
    }

    .padding{
        padding: 10px;
    }

    #illustration img{
        width:90%;
    }

    #txt-container{
        width: 90%;
    }

    #arguments{
        width: 80%;
    }

    #pictogrammes{
        padding: 5%;
    }

    .picto-pic{
        width: 50px;
    }
    
    .picto-desc{
        width: 100%;
        font-size: 80%;
    }

    #picto-global-container{
        padding: 0 1%;
    }
    


  }




