@tailwind base;
@tailwind components;
@tailwind utilities;


header{
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

footer{
    margin-top: 3rem;
    font-family: 'Inter', sans-serif;
}

body{
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}


.wrapper {
    margin: 0 auto;
    max-width: 80%;
}

@media screen and (max-width: 1200px){
    .wrapper{
        max-width: 80%;
    }
}

h1{
    font-size: 3rem;
    color: #fff;
    font-weight: bolder;
}

h2{
    font-size: 3rem;
    color: #2C8068;
}


h3{
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
}

h4{
    font-size: 0.875rem;
    color: #fff;
    font-weight: 700;
    margin: 1rem 0 0 0;
    width: fit-content;
}

h5{
    color: #8C8C8C;
    font-size: 1.4rem;
}

h6{
    color: #323232;
    font-size: 1.6rem;
}

.paragraph_little_size{
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
}

.paragraphe{
    font-size: 1rem;
    color: #323232;
    font-weight: lighter;
}

/* Media query Titre et paragraphe pour Téléphone et tablette */
@media screen and (max-width: 768px){
    .paragraph_little_size{
        font-size: 1rem;
    }

    h2{
        font-size: 1.8rem;
    }

    h3{
        font-size: 1.2rem;
    }
    
}


