Retour 6.5s/TopazDev_Main.css
body{
    font-family: 'Source code pro', Calibri, serif;
  font-size: 14px;
    margin: 0px;
    padding: 0px;
    background-color: rgb(46, 49, 68);
}

/*---------------------
Images
-----------------------*/
#image{
  padding: 20px;
  width: 60%;
}

.image{
  width: 30%;
  padding: 10px;
}

.image2{
  width: 700px;
  padding: 20px;
}

.pimage{
  vertical-align: middle;
  width: 500px;
  padding: 80px;
}

/*---------------------
Paragraphe
-----------------------*/
p{
  color: white;
}

.paragraphe,
h3{
  margin: 25px 100px 10px 100px; /*Top - Right - Bottom - Left*/
  margin-top: 50px;
}

.paragraphe2{
  margin: 50px 0px 10px 0px; /*Top - Right - Bottom - Left*/
  width: 500px;
}

.paragraphe3{
  margin: 25px 50px 25px 50px; /*Top - Right - Bottom - Left*/
}

.paragraphe4{
  display: table-cell; /* comportement visuel de cellule */
  vertical-align: middle;
}

/*---------------------
Lien
-----------------------*/
/* unvisited link */
.lien a:link {
  color: green;
}

/* visited link */
.lien a:visited {
  color: #f0c300;
}

/* mouse over link */
.lien a:hover {
  color: #f2b117;
}

/* selected link */
.lien a:active {
  color: lightblue;
}

.invlink{
  text-decoration: none;
}

/*---------------------
Ombres
-----------------------*/
.shadow{
  text-shadow: 0.5px 0 0 #000, -0.5px 0 0 #000, 0 0.5px 0 #000, 0 -0.5px 0 #000, 0.5px 0.5px #000, -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000, -0.5px 0.5px 0 #000;
}

/*---------------------
Display Flex
-----------------------*/
.flex{
  display: flex;
}

.flex_center {
  display: flex;
  justify-content: center;
}

.flex_center_full {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex_center_vertical {
  display: flex;
  align-items: center;
}

.fd_row{
  flex-direction: row;
}

.fd_col{
  flex-direction: column;
}

.fd_rowr{
  flex-direction: row-reverse;
}

.fd_colr{
  flex-direction: column-reverse;
}

.fw_on{
  flex-wrap: wrap;
}

.fw_off{
  flex-wrap: nowrap;
}

.fw_reverse{
  flex-wrap: wrap-reverse;
}

@media screen and (max-width: 1087px) {
  .dynamic_fw {
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 1087px) {
  .dynamic_fw {
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 1087px) {
  .dynamic_fd {
    flex-direction: column;
  }
}

@media screen and (min-width: 1087px) {
  .dynamic_fd {
    flex-direction: row;
  }
}

/*---------------------
Display Float
-----------------------*/
.float{
  float: left;
}

.right{
    float: right;
}

/*---------------------
Centrage
-----------------------*/
.centrage {
  text-align: center;
  align-content: center;
}

.centragebox {
  margin-left: auto;
  margin-right: auto;
}

/*---------------------
Titre
-----------------------*/
.titre{
    padding: 0px;
  margin: 0px;
    margin-bottom: 40px;
    width: 100%;
  height: 50px;
  padding-top: 5px;
  font-size: 150%;
}

.titre2{
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 104px;
    width: 100%;
    height: 35px;
}

.titre3{
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    height: 35px;
}

.titre4{
    padding: 0px;
  margin: 0px;
    width: 100%;
  height: 50px;
}

h1, h2{
  text-align: center;
  vertical-align: middle;
  color: white;
  margin: 0px;
  padding-top: 10px;
}

.support{
  padding-top: 50px;
  font-size: 20px;
}

/*---------------------
Infobulle
-----------------------*/
.infobulle {
  position: relative;  /* les .infobulle deviennent référents */
  cursor: help;
}

/* on génère un élément :after lors du survol et du focus :*/

.infobulle:hover::after,
.infobulle:focus::after {
  content: attr(aria-label);  /* on affiche aria-label */
  position: absolute;
  top: -2.4em;
  left: 50%;
  transform: translateX(-50%); /* on centre horizontalement  */
  z-index: 1; /* pour s'afficher au dessus des éléments en position relative */
  white-space: nowrap;  /* on interdit le retour à la ligne */
}

.pointer{
    cursor: pointer;
}