@import url(https://cdn.rawgit.com/dreampulse/computer-modern-web-font/master/fonts.css);
        
@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: 'codropsicons';
    src:url('data/fonts/codropsicons/codropsicons.eot');
    src:url('data/fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
        url('data/fonts/codropsicons/codropsicons.woff') format('woff'),
        url('data/fonts/codropsicons/codropsicons.ttf') format('truetype'),
        url('data/fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
}

@font-face {
    font-family: Raleway;
    src: url(/data/fonts/raleway/Raleway-VariableFont_wght.ttf);
}

* {
    font-family: "Computer Modern Sans", 'Lato', Calibri, Arial, sans-serif;
    /* font-family: Raleway; */
}

body {
    margin: 0;
    color: #2f6f2f;
    background: #f6fef6;
    font-weight: 300;
}

h1, h2 {
    color: #000000;
}

p {
    text-align:justify;
}
li {
    text-align:justify;
}

a {
    text-decoration: none;
    color: #fe9600;
}

a:hover, a:focus {
    text-decoration: underline;
}

/* main */    
.main {
    padding: 0em 0em;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.6em;
}

/* footer */
footer {
    text-align: center;
    margin: 20px;
}

/*taille tablette*/
@media only screen and (max-width: 1200px)  {
    .main {
        font-size: 1.4em;
        padding: 0.5em;
    }
}


/*"taille telephone"*/
@media only screen and (max-width: 700px)  {

    .main {
        font-size: 1.2em;
        padding: 1em;
    }

    img {
        width: 100%;
        height: auto;
    }

}