html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  background-color: rgb(224, 196, 190);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  margin: 0;
}

.title {
  border-bottom: solid 2px;
  padding: 5px 30px;
  color: #660033;
  font-family: vivaldi;
  font-size: 34px;
}
header {
  padding: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  background-color: rgb(209, 171, 163);
}

h3 {
  margin: 20px;
}

nav {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 30px;
  font-weight: bold;
  padding: 10px 0;
}
footer {
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  background-color: rgb(209, 171, 163);
  width: 100%;
}
h3 {
  font-weight: 100;
}
b {
  font-weight: 0;
}
h4 {
  font-weight: 100;
}
.explication {
  padding-left: 40px;
  list-style-image: url("image/pastille.png");
}

.row {
  display: flex;
  flex-direction: row;
  gap: 150px;
}

main {
  padding: 20px;
  padding-bottom: 200px;
  flex: 1;
}

.logo {
  height: 129px;
  width: 432;
}
.nav a {
  color: #660033;
  transition: transform 0.2s;
}
.nav a:hover {
  transform: scale(1.1);
}
.isere {
  height: 110px;
  width: 413;
}
.event {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.affiche {
  height: 70%;
  width: 90%;
}
.presentation {
  text-align: center;
  position: absolute;
}
.centre {
  padding: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
}
li {
  list-style-image: url("image/pastille.png");
}
.present h2 {
  font-weight: 100;
}
.erreur {
  padding: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
}
button {
  background-color: rgb(209, 171, 163);
  text-align: center;
  text-decoration: none;
  color: black;
  border: none;
  border-radius: 15px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.5s;
}
button:hover {
  background-color: #79023d;
  transform: scale(1.05);
  transition: 0.5s;
}
table {
  border-collapse: collapse;
}
td {
  border: solid 1px;
  text-align: center;
  padding: 10px;
  border-color: #660033;
}
.guitare {
  height: 74px;
  width: 82;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  gap: 10px;
  width: 90%;
  max-width: 1200px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.colorful-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.form-input {
  width: 100%;
  padding: 10px;
  border: none;
  background-color: #fff;
  color: #333;
  border-radius: 5px;
}

textarea.form-input {
  height: 100px;
}

.form-button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: rgb(209, 171, 163);
  color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-button:hover {
  background-color: #79023d;
}

.partenaires {
  height: 50px;
  width: 50;
}

.image img {
  max-width: 25%;
  height: auto;
  display: block;        
  margin-bottom: 20px; 
}

.emploi {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
    gap: 40px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .logo,
  .affiche,
  .partenaires {
    width: 100%;
    height: auto;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .title {
    text-align: center;
    font-size: 24px;
  }

  .explication {
    padding-left: 20px;
  }
}
.partenaires-section {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.partenaires-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.partenaires {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.partenaires:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .partenaires {
    height: 35px;
  }

  .partenaires-logos {
    gap: 10px;
  }
}

