@charset "utf-8";
/* CSS Document */
/* ========================================
   CSS-Flore-Planche.css
   Feuille de style pour les planches photos
   ======================================== */

body {
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    background-color: hsla(85,33%,60%,1);
    font-size: xx-small;
}

.titre {
    font-family: Georgia, Times New Roman, Times, serif;
    font-style: italic;
    font-size: 36px;
    color: hsla(0,0%,4%,1);
    text-align: center;
    margin: 10px 0;
}

.groupe {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px auto;
}

.groupe a img {
    display: block;
}

.paysage img {
    width: 283px;
    height: 212px;
}

.portrait img {
    width: 212px;
    height: 283px;
}

.Texte {
	max-width: 900px;
	margin: 40px auto;
	text-align: justify;
	font-size: 18px;
	line-height: 1.7;
	font-family: Georgia, Times New Roman, Times, serif;
}

/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 600px) {

    body {
        margin-left: 5px;
        margin-right: 5px;
    }

    .groupe {
        margin: 10px auto;
    }

    .groupe a img {
        width: calc(50vw - 15px) !important;
        height: auto !important;
    }

    .Texte {
	font-size: 16px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	max-width: 90%;
    }
}
