/*---------------------------------------------------------------*/
/*

    Titre : Affichage css                                                       
                                                                                                                          
    Auteur           : Rémi Jouan                                                                                      
    Date édition     : 22/11/2023                                                                                       
    Date mise à jour : 21/01/2024                                                                                      

*/
/*---------------------------------------------------------------*/


* {
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  font-size: 100%;
  font-family:"times new roman", times, serif;
  max-width: 100%;
}

h1 {
  font-size: 300%;
  word-break: break-all;
  text-align: left;
}

h2 {
  font-size: 200%;
  word-break: break-all;
}

h3 {
  font-size: 100%;
  word-break: break-all;
}


            .images {
            display: flex;
            text-align: center;
            flex-wrap: wrap;
            font-size: 0;
            height: 85vh;
            }
             
            .image {
            width: 100%;
            height: 100%;
            overflow: hidden;
            }

/* Center website */
.main {
  max-width: 85%;
  text-align: center;
  margin: auto;
}

logo {
  width = "50"
}

.main1 {
  text-align: center;
  margin: auto;
  height: 50%;
}

/* Grid */
.wrapper {
  max-width: 80%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 5px;
  justify-items: center;
  align-items: center;
}

/* Image */
img {
  background-size: cover;
  max-width: 100%;
  max-height: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
.wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  align-items: center;
}
h1 {
  font-size: 300%;
  word-break: break-all;
  text-align: left;
}


