
/*  Réglages du bouton hommage  */
.hommage{
  display: flex;
  flex-direction: column;
}

div.hommage {
  width: 300px;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 25px;
}

div.hommageTitre {
  text-align: center;
  padding: 10px 20px;
}

.hommageTitre p{
  color:black;
}
.LeMenu{
  display:flex;
  flex-direction: row;
  row-gap: 10px;
  justify-content: space-between;
  align-items:start;
  padding : 20px 40px;
  border: solid black;
  border-width: 5px 0px;
}

.hommage img{
  width: 300px;
  border-radius: 10px;
}


.hommageMazel p{
  font-size :1.4rem;
  text-align: justify;
  padding:0px 80px;
}

/* Réglages du bouton amenant au site */

.VersAccueil{
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  border: 5px solid black;
  border-radius: 5px;
  background-color: #b66d50;
  padding: 10px;
  align-items: center;
  cursor: pointer;
}

.VersAccueil img{
  width: 80px;
}

.LeTexte{
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}

.Taille1{
  font-size: 2rem;
  text-justify: center;
}

.Taille2{
  font-size: 1.5rem;
  text-justify: center;
}


/* Réglage du menu */

.dropbtn {
  background-color: #853414;
  width: 180px;
  color: rgb(0, 0, 0);
  padding: 16px;
  font-size: 30px;
  border: 5px solid black;
  border-radius: 5px;
  cursor: pointer;
}

/*
.dropdown {
  position: relative;
}
*/

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 20px;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e0707;
  color: white;
}


/*  Réglage de la page modale */

/* Add animation (Chrome, Safari, Opera) */
@-webkit-keyframes example {
  from {top:-100px;opacity: 0;}
  to {top:0px;opacity:1;}
}

/* Add animation (Standard syntax) */
@keyframes example {
  from {top:-100px;opacity: 0;}
  to {top:0px;opacity:1;}
}

/* The modal's background */
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Display the modal when targeted */
.modal:target {
  display: table;
  position: absolute;
}

/* The modal box */
.modal-dialog {
  display: table-cell;
  vertical-align: middle;
}

/* The modal's content */
.modal-dialog .modal-content {
  margin: auto;
  background: linear-gradient(to bottom right,rgb(228,114,43), rgb(171, 85, 39));
  position: relative;
  padding: 0;
  outline: 0;
  border: 1px #777 solid;
  text-align: justify;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

  /* Add animation */
  -webkit-animation-name: example; /* Chrome, Safari, Opera */
  -webkit-animation-duration: 0.5s; /* Chrome, Safari, Opera */
  animation-name: example;
  animation-duration: 0.5s;
}

/* The button used to close the modal */
.closebtn {
  text-decoration: none;
  float: right;
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}

.closebtn:hover,
.closebtn:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.container {
  padding: 2px 16px;
}

.modal header {
  background-color: rgb(94, 2, 2);
  font-size: 25px;
  color: white;
}

.modal footer {
  background-color: rgb(94, 2, 2);
  font-size: 20px;
  color: white;
}

.modal h2{
  font-size: 1.5em;
}

/*  Partie centrale avec sponsors  */

.groupe1{
  display : flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin: 25px 0px;
}

.sousGroupe{
  display : flex;
  flex-direction: column;
  align-items: center;
}

.sousGroupe img{
  width:200px;
}

.groupe0{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.groupe0 .petiteImage{
  width:17%;
}

.groupe2{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.groupe2 .moyenneImage{
  width:35%;
}
.groupe2 .petiteImage{
  width:22%;
}


.cadre{
  border: 5px solid rgb(19, 18, 17);
  border-radius: 10px; 
  box-shadow: 0 0 10px rgb(19, 8, 1);
  padding: 2em 5em;
  justify-content: center;
  display: flex;
  flex-direction: column;
  background-color: white;
}

.texte{
  text-align: center;
}


@media screen and (max-width: 996px) {




/* Partie centrale avec sponsors  */

.groupe1{
  display : flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:10px;
  /*margin: 10px 0px;*/
}

.sousGroupe{
  display : flex;
  flex-direction: row;
  gap:20px

}

.sousGroupe img{
  width:70px;
}

.groupe0{
  display: flex;
  flex-direction: row;
  align-items: space-around;
  justify-content: space-around;
}

.groupe0 .petiteImage{
  width:17%;
}

.groupe2{
  display: flex;
  flex-direction: column;
  align-items: space-around;
  gap:10px;
  margin: 10px;
}
.groupe2 .moyenneImage{
  width:50%;
}
.groupe2 .petiteImage{
  width:25%;
}

.cadre{
  padding: 10px 20px;
  margin:10px    
}

.texte{
  text-align: center;
  font-size: 20px;
}

.modal h2{
  font-size: 15px;
}




.LeMenu{
  row-gap: 4px;
  padding : 4px 10px;
}




/*  Réglages du bouton hommage  */


div.hommage {
  width: 100px;
  margin-bottom: 5px;
}

div.hommageTitre {
  padding: 4px 4px;
}

.hommage img{
  width: 100px;
  border-radius: 5px;
}




/* Réglages du bouton amenant au site */

.VersAccueil{
  column-gap: 5px;
  border: 3px solid black;
  border-radius: 3px;
  padding: 2px;
}

.VersAccueil img{
  width: 20px;
}

.LeTexte{
  row-gap: 3px;
}

.Taille1{
  font-size: 14px;
}

.Taille2{
  font-size: 13px;
}





/* Réglage du menu */

.dropbtn {
  width: 60px;
  padding: 4px;
  font-size: 16px;
  border: 3px solid black;
  border-radius: 3px;
}

.dropdown-content {
  min-width: 120px;
  right: 0px;
}

.dropdown-content a {
  color: black;
  padding: 4px 4px;
  font-size: 14px;
}


}
