
/* Main */

:root{
  --darkRed :#4F0000;
  --lightPink : #F4D1D1;
}

h1{
  font-size: 3rem;
  text-align: center;

}

p{
  text-align: center;
  width: 90%;
  margin-right: auto;
  margin-left: auto;

}

hr{
  margin-bottom: 10px;
}

/* Content */

main a{
  text-decoration: none;
  font-size: 1.5rem;
  margin-top: 10px;
}

/* Zone Filtre */

.filtre{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}

select{
  border: var(--darkRed) 2px solid;
  width: 200px;
  height: 30px;
  border-radius: 5px;
}

.filtre a{
  font-family: "Itim", cursive, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
}

details{
  width: 150px;
  height: 20px;
  overflow: visible;
  z-index: 2;
}

details div{
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  border: var(--darkRed) 1px solid;
}

/* Liste Salles */

.liste-salles{
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  padding: 5vw;
}

.liste-salles img{
  width: 250px;
  height: 250px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}

.salle{
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: #F4D1D1;
  border-radius: 30px;
  width: 300px;
  padding: 30px 0;
  margin-bottom: 20px;
  animation: ease 1s;
}

.salle:hover{
  transform: scale(1.05);
  animation: ease 1s;
}