
/* Ici, j'ajoute des typos à utiliser */
@font-face {
  font-family: OpenSans-Regular;
  src: url(../fonts/OpenSans-Regular.ttf);
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: OpenSans-Bold;
  src: url(../fonts/OpenSans-Bold.ttf);
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: OpenSans-Semibold;
  src: url(../fonts/OpenSans-Semibold.ttf);
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: OpenSans-Bold-italic;
  src: url(../fonts/OpenSans-BoldItalic.ttf);
  font-style: normal;
  font-weight: normal;
}

/* mise en page pour toute la page, en général */
body {
    font-family: OpenSans-Regular;
}

h1 {
    font-family: OpenSans-Bold;
    font-size: 35px;
}

/* Concerne les titres "h1" qui sont concernés par la class "contenu" */
.contenu h1 {
    color: black;
    margin-bottom: 50px;
}

.contenu h2 {
    margin-top: 65px;
    margin-bottom: 50px;
    padding-left: 30px;
    font-family: OpenSans-Semibold;
}

h3 {
    /* text-decoration: underline; */
    font-weight: normal;
}

p {
    padding-left: 70px;
    line-height: 35px;
    margin-bottom: 50px;
    font-size: 20px;
}

ul {
    padding-left: 120px;
    margin-top: -15px;
    margin-bottom: 40px;
    font-size: 20px;
}

li {
    margin-bottom: 20px;
    line-height: 35px;
}

strong {
    font-family: OpenSans-Bold;
    font-weight: normal;
}

/* le point = class (voir dans code html la class "contenu") */
.contenu {
    margin-top: 100px;
    margin-left: 13vw;
    margin-right: 15vw;
    margin-bottom: 200px;
}

.contenu figure {
    padding-left: 70px;
    margin: 0;
}

.contenu img {
  max-width: 100%;
  max-height: 800px;
  height: auto;
}

.encadrer {
    border-style:dashed;
    border-width: 4px;
    border-color: #33ff8f;
}

#tracts a {
    color: black;    
}

#tracts a:hover {
    color: #564f4f;
}

/* Pour les images: figure et figcaption */
figure {
    text-align: left;
}
figcaption p {
    line-height: 20px;
    margin-bottom: 10px;
    padding-left: 0;
}

.attention {
    color:black;
    background-color:#33ff8f;
    font-family: OpenSans-Bold;
}

/* le # = id (voir dans le code html, l'id menu) */
#menu {
    margin: -10px;
    background-color: #564f4f;
    padding: 10px;
    display: flex;
    padding: 25px;
}

.menu-item {
    flex: 1 1 0;
    text-align: center;
    color: #33ff8f;
    font-size: 23px;
}

#bas {
    position: relative;
    margin: -10px;
    background-color: #564f4f;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}

#acc {
    position: absolute;
    text-align: right;
    padding: 20px;
    right: 0;
    width: 50px;
    color: #33ff8f;
    font-size: 23px;
}

.bas-item {
    flex: 1 1 0;
    /* text-align: center; */
    color: #33ff8f;
    padding-left: 50px;
    font-size: 23px;
}

#bas h1 {
    font-size: 35px;
}

::selection {
    color: black;
    background-color: #33ff8f;
}

/* commentaire css */
/* class . et id #*/