@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;
}

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

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


.subtitel {
    margin-top: -20px;
    margin-bottom: 40px;
    font-size: 16px;
}

.tiny {
    font-size: 16px;
}

.text, .other, .paragraph {
    box-sizing: border-box;
    border: 1px solid #cccccc;
    background-color: #f6fef6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
}

.other {
    padding: 2px 4px;
    margin: 0px 0;
}

.text {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
}

.paragraph {
    width: 100%;
    height: 100px;
    padding: 12px 20px;
    margin: 8px 0;
}

.other:focus,.text:focus,.paragraph:focus {
    border: 1px solid #333333;
}

.button {
    background-color: #2f6f2f;
    border: none;
    color: #ffffff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 22px;
    margin: 4px 2px;
    cursor: pointer;
    transition: 0.5s;
}

.button:hover {
    text-decoration: none;
    background-color: #183a18;
}

.error {
    color: #fe9600;
    font-size: 12px;
}

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

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


.left, .right {
    width: 50%;
    float: left;
    margin-bottom: 20px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

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

    .left, .right {
        width: 100%;
    }
}


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

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