@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: "Andale";
    src: url("../fonts/andalemono-webfont.woff")format("woff"), 
    url('../fonts/andalemono-webfont.woff2') format('woff2'),
    url('../fonts/andalemono-webfont.eot') format('eot');
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Andale";
}

header {
    height: 300px;
    width: 100%;
    text-align: center;
    /* background: linear-gradient(#dcdcdc, white);*/
}

header img {
    width: 400px;
    padding-top: 1.5em;
}

h1 {
    margin: 0;
    padding: 0;
}

h2{font-size: 1.25rem}


#contenu {
    color: #1d1d1d;
    position: relative;
    min-height: 100%;
    /*Le contenu prend 100% de la page */
    margin-bottom: -95px;
    /*L'opposé de la taille du footer */
}

section {
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 5em;
}

section a {
    color: #1d1d1d;
    text-decoration: none;
    border: solid #1d1d1d 1px;
    padding: 1em;
    border-radius: 10px;
}

section a:hover {
    color: #CCCCCC
}

.description {
    margin-top: 2.5%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    width: 30%;
    font-size: 1.2em;
    line-height: 1.75rem;
}

.clearfooter {
    height: 95px;
    clear: both;
}

footer {
    height: 95px;
    position: relative;
    background-color: #dcdcdc;
    color: #3f3f3f;
    font-size: 1.05rem;
}

.left {
    float: left;
    padding: 1em 0 0 3.2em;
}

.right {
    float: right;
    text-align: right;
    padding: 1em 3.2em 0 0;
}

footer a {
    text-decoration: none;
    color: #3f3f3f;
}

footer a:hover {
    color: #808080;
}