@charset "UTF-8";
/* CSS Document */

html, body {
  margin: 5px;
  padding: 0;
width: 100%;
max-width: 100%;
  overflow-x: hidden;
  height: 100%;
  background: #fff;
  font-family: Helvetica, Arial, sans-serif;
}
p1 {
  color: blue;
  text-align: left;
  font-weight: bold;
  margin: 12px 10px;
  font-size: 18px;
}

.composition {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: auto;
  gap: 10px;
  width: 90vw;  
  margin: 0 auto;
	margin-top: 10px; 
}
.composition img {
  width: auto;
  height: auto;
  max-width: 100%;  
  object-fit: unset;
  border-radius: 10px;
  display: block;
}

.up {
  translate: 0 -490px;
}

.bouton-projets {
  position: fixed;
  bottom: 15px;
  right: 15px;
  color: blue;
  font-size: 16px;
  text-decoration: none;
  background: none;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.bouton-projets:hover {
  color: #0056b3;
  transform: translateY(-2px);
}
.texte-bas {
	font-weight: normal;
  width: 90vw;
  margin: -500px auto 50px;     
  font-size: 16px;
  color: blue;
  line-height: 1.4;
}
p2 {
  font-weight: normal;
  width: 90vw;
  margin: 50px;     
	margin-left: 50px; 
  font-size: 16px;
  color: blue;
  line-height: 1.4;
}

#langBtn {
  position: fixed; 
  top: 20px; 
  right: 20px; 
  z-index: 1000; 
  background: white;
  border: 1px solid blue;
  color: blue;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  text-decoration: none;
  font-weight: bold;
}

#langBtn:hover {
  background: blue;
  color: white;
}