/* 
font-family: 'Great Vibes', cursive;
font-family: 'Oswald', sans-serif;
font-family: 'Lato', sans-serif;
*/

/*GENERAL*/

html,
body,
div,
header,
#global,
footer,
h1,
h2,
span {
  margin: 0;
  padding: 0;
}


#global {
  width: 1120px;
  margin: auto;
  font-family: 'Lato', sans-serif;
  /* font-family principale */
  text-align: justify;
}

.clear {
  clear: both;
}

.bold {
  /* mets en gras */
  font-weight: bold;
}

/* Séparations */

hr {
  margin-top: -50px;
  border-color: rgb(0, 0, 0);
}

.margin-hr {
  margin: 10px 0 20px 0;
}

/* Header */

/*LOGO + TITRES*/

header h1 {
  padding: 10px 0 0 0;
}

header h1 a {
  
  font-size: 60px;
  font-family: 'Great Vibes', cursive;
  position: relative;
  font-weight: lighter;
  /* affine les lettres */
  color: #ff0000;
  z-index: auto;
}

header h2 {
  font-size: 55px;
  margin-top: -35px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}


/* Navigation */
nav {
  position: relative;
  top: -100px;
  left: 530px;
  display: inline-block;
}

nav ul li {
  position: relative;
  font-variant: small-caps;
  display: inline;
  font-size: 30px;
  padding-left: 30px;
}

a {
  text-decoration: none;
  color: black;
}

.link:hover {
  font-weight: 900;
}

/* Section */

.h2_color {
  width: 830px;
  /* largeur du titre pour dégrader */
  margin-left: 145px;
  /* centrage du titre */
}

section h2 {
  text-transform: uppercase;
  text-align: center;
  font-style: italic;
}

section div h2 {
  text-transform:initial;
  font-variant: small-caps;
  margin-bottom: 20px;
}

p a {
  text-decoration: underline;
  color: #0000ff;
  /* mets en bleu et souligne les liens */
}

.center {
  text-align: center;
}

section p {
  font-size: 20px;
  font-style: italic;
  margin: auto;
}

.dropcap {
  /* premiere lettre en plus grand */
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
}

.inlay_left {
  float: left;
  margin: 9px 10px 0 0;
}

.inlay_right {
  float: right;
  margin: 9px 0 0 10px;
}


.separator {
  /* crée des espaces entres les éléments */
  margin-bottom: 50px;
}

/* colonnes */

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

.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 !important;
}

/* liste des couleurs */

.color a,
.color {
  /* dégrader des 4 couleurs */
  background-image: linear-gradient(to right, #0000ff, #dddf7e, #ff0000, #509c50);
  background-clip: content-box;
  -webkit-background-clip: text;
  color: transparent;
}

.blue a,
.blue {
  color: #0000ff;
}

.yellow a,
.yellow {
  color: #dddf7e;
}

.red a,
.red {
  color: #ff0000;
}

.green a,
.green {
  color: #509c50;
}

/* Footer */

footer {
  padding: 20px 0;
  font-size: 25px;
  background-color: #d89417fa;
  color: white;
  text-align: center;
}

footer a {
  color: white;
}

/* tableaux couleurs */

table {
  border: 2px solid black;
  margin: auto;
}

/* tableau */
td {
  text-align: center;
  width: 200px;
  height: 50px;
}

.td-blue {
  background-color: #0000ff;
  color: white;
}

.td-yellow {
  background-color: #dddf7e;
  color: white;
}

.td-red {
  background-color: #ff0000;
  color: white;
}

.td-green {
  background-color: #509c50;
  color: white;
}

.td-orange {
  background-color: #d89417fa;
  color: white;
}

.td-rainbow {
  /* dégrader cellule tableau */
  background-image: linear-gradient(to right, #0000ff, #dddf7e, #ff0000, #509c50);
  color: white;
}