/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #111111;
  font-family: Arial, sans-serif;
  color: white;
}

/* Carousel */
/* Style du header */
header {
  padding: 20px;
  background-color: #111111;
  color: white;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

/* Style de la galerie */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.drawing {
  width: 300px;
  margin: 15px;
  background-color: #222222;
  padding: 10px;
  border-radius: 5px;
}

.drawing img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.drawing p {
  margin-top: 10px;
  font-size: 1em;
}

/* Style du footer */
footer {
  padding: 10px;
  background-color: #222222;
  color: white;
  position:relative;
  bottom: 0;
  width: 100%;
}
.banner {
  width: 100%;
  height: 40vh; /* Ajuste la hauteur selon tes besoins */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent; /* Optionnel : fond si l'image ne remplit pas tout */
}

.banner img {

  width: 100%;
  height: 100%;
  object-fit:cover; /* Garde l'image entière sans la couper */
}
@media (max-width: 1024px) {
  .banner img {
    margin-top: 35px;
}
}
@media (max-width: 720px) {
  .banner img {
    margin-top: 35px;
}
}
@media (max-width: 480px) {
  .banner img {
    margin-top: 35px;
}
}