/* BODY: aspect général du site */

body {
    width: 1120px;
    height: 100%;
    margin: 0 auto;
    font-family: 'Lato', sans-serif;
    text-align: justify;
}


/* HEADER: Logo et menu de navigation du site */

header {
    height: 165px;
    background-color: black;
    padding: 20px 40px;
}

a {
    text-decoration: none;
}

.logo {
    height: 120px;
    margin-top: 20px;
    font-size: 80px;
}

.life {
    font-family: 'Great Vibes', cursive;
    font-size: 88px;
    position: relative;
    top: 0;
    z-index: 100;
    padding-bottom: 0;
    margin-bottom: 0;
}

.colors {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    position: relative;
    top: -50px;
    z-index: 10;
}


/* menu de navigation */

nav {
    float: right;
}

nav a {
    width: 100px;
    display: inline-block;
    text-align: center;
    border: solid white 2px;
    border-radius: 8px;
    width: 110px;
    margin: 0 5px;
}

nav ul {
    list-style: none;
    font-family: 'Oswald', serif;
    font-size: 22px;
}

nav ul li {
    display: inline-block;
}


/* de quoi faire ressortir le bouton survolé */

nav a:hover {
    background-color: white;
    color: black;
}


/* fait ressortir le bouton correspondant à la page actuelle */

.selected {
    background-color: white;
    color: black;
}


/* SECTION: les différentes pages */

h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
}


/* Tableau */

table {
    width: 100%;
    max-width: 1100px;
    height: 350px;
    margin: 0 auto 35px;
    text-align: center;
    border: 1px solid #000000;
    border-spacing: 0;
}

td {
    border: 1px solid #000000;
}


/* Couleurs de fond des différentes cellules */

.black_border {
    border: 4px solid #000000;
}

.blue_cell {
    background-color: #0000ff;
}

.yellow_cell {
    background-color: #ffff00;
}

.red_cell {
    background-color: #ff0000;
}

.green_cell {
    background-color: #00ff00;
}

.blue_cell2 {
    background-color: #00aaff;
}

.yellow_cell2 {
    background-color: #ffffaa;
}

.red_cell2 {
    background-color: #ff00aa;
}

.green_cell2 {
    background-color: #aaff00;
}

.blue_cell3 {
    background-color: #000069;
}

.yellow_cell3 {
    background-color: #696900;
}

.red_cell3 {
    background-color: #690000;
}

.green_cell3 {
    background-color: #006900;
}


/* FOOTER */

footer {
    height: 60px;
    width: 1120px;
    margin: 0 auto;
    text-align: center;
    background-color: black;
    bottom: 0;
    padding: 15px 0;
}

footer p {
    margin: 5px;
}

.pdfdownload {
    text-decoration: underline;
}


/* DIVERS */


/* classes de couleurs de texte */

.black {
    color: black;
}

.white {
    color: white;
}

.blue {
    color: blue;
}

.yellow {
    color: yellow;
}

.red {
    color: red;
}

.green {
    color: green;
}


/* classes de colonnes */

.col {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.clear {
    clear: both;
}

.col-3-12 {
    width: 265px;
}

.col-4-12 {
    width: 360px;
}

.col-6-12 {
    width: 550px;
}

.col-8-12 {
    width: 740px;
}

.col-9-12 {
    width: 835px;
}

.last {
    margin-right: 0;
}