/*----------------CARROUSEL----------------*/

.carrousel {
    width: 100%; /*largeur*/
    margin: auto; /*marge extérieur*/
    margin-top: 60px; /*marge extérieur haut*/

    background-color: red;
    font-size: 0pt; /*police taille*/
}

.carrousel img {
    width: 100%; /*largeur*/
    height: 500px; /*hauteur*/
    object-fit: cover; /*ajuster à la taille de son contenant*/
    object-position: center; /*position du contenu*/ 
}

/*----------------TITRE----------------*/

h1 {
    margin-top: 70px; /*marge extérieur haut*/
}

p {
    width: 70%; /*largeur*/
    margin: auto; /*marge extérieur*/
    margin-top: 20px; /*marge extérieur haut*/
    font-family: var(--police-texte); /*police type*/
    font-size: var(--taille-police-14); /*police taille*/
    line-height: 1.5; /*espace entre ligne*/
    text-align: justify; /*texte alignement*/
    text-justify: inter-word; /*type de justification*/
    color: var(--couleur-noir); /*police couleur*/
}

/*----------------VIGNETTE----------------*/

.vignette {
    width: 70%; /*largeur*/
    margin: 50px auto 50px auto; /*marge extérieur*/
    display: flex; /*apparition des balises*/
    flex-wrap: wrap; /*disposés en ligne*/
    justify-content: space-between; /*centre horizontalement le contenu*/ 
    gap: 20px; /*espace entre les éléments*/
}

.vignette:last-child {
    margin: 0px auto 100px auto; /*marge extérieur*/
}

.vignette a {
    flex: 1; /*rempli l'espace disponible*/
    font-family: var(--police-texte-gras); /*police type*/
    font-size: var(--taille-police-18); /*police taille*/
    text-transform: uppercase; /*texte transformer*/
    text-decoration: none; /*texte decoration*/
    color: inherit; /*police couleur*/
}

.vignette img {
    width: 100%; /*largeur*/
    height: 350px; /*hauteur*/
    border-radius: 6px; /*bordure arrondi*/
    object-fit: cover; /*ajuster à la taille de son contenant*/
    object-position: center; /*position du contenu*/
}

