body{
  font: 1em "Fira Sans", sans-serif;
  background-color: #EE82EE;
  background-size: cover;
  color: white;
  padding-bottom: 50px;
}

.home img {
  position: absolute;
  margin-top: 2%;
  margin-left: 2%;
}

.home img:hover {
  width: 55px;
  height: 55px;
}

.group{
  padding: 2%;
  display: flex;
  justify-content: center;
}

.group img{
  max-width: 12%;
  height: auto;
}

h1{
  margin-top: 2%;
  text-align: center;
  font-size: 3.7em;
}

.hide {
  visibility: hidden;
}

.title{
  margin-top: 2.5%;
  text-align: center;
  font-size: 1.5em;
}

:root{
  --hauteur-menu: 60px;
}

* {
  margin: 0px;
  padding: 0px;
  font-family: Montserrat, sans-serif;
}

nav {
  width: 100%;
  font-size: 18px;
  position: sticky;
  top: 0;
  margin-top: 0%;
  background-color: rgb(238,130,238,0.8);
}

nav > ul {
  display: flex;
  text-align: center;
  box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.3);
  height: var(--hauteur-menu);
}

nav ul {
  list-style-type: none;
}

nav > ul > li {
  position: relative;
  height: 100%;
  flex: 1;
}

nav > ul > li > a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

li a {
  text-decoration: none;
  color: white;
}

.menu-deroulant > a:after{
  content: '>';
  font-size: 15px;
  margin-left: 7px;
  display: inline-block;
}

.sous-menu {
  margin-top: var(--hauteur-menu);
  width: 100%;
  text-align: left;
  background-color: rgba(238,130,238,0.8);
  border-radius: 2px;
  overflow: hidden;
  max-height: 0;
}

.sous-menu > li > a {
  height: 50px;
  padding-left: 20px;
  width: 100%;
  align-items: center;
  display: flex;
}

nav > ul > li:hover > a{
  color: black;
}

.sous-menu > li:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.sous-menu > li:hover > a {
  color: black;
}

@keyframes rotationFleche {
  0% {
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(90deg);
  }
}

.menu-deroulant:hover > a:after{
  animation: rotationFleche 0.2s linear forwards;
}

@keyframes apparitionSousMenu {
  0% {
    box-shadow: 0px 3px 3px 1px rgba(0,0,0,0);
    border-top: 3px solid #0000;
  }
  30% {
    box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.3);
  }
  100% {
    max-height: 50em;
    border-top: 3px solid #0000;
    box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.3);
  }
}

.menu-deroulant:hover > .sous-menu {
  animation: apparitionSousMenu 1s forwards;
}

table {
  margin-top: 2%;

}

th {
  width: 25%;
}

.search {
  display: flex;
  align-items: center;
  max-width: 450px;
  background-color: #f4f4f4;
  border-radius: 6px;
  padding: 15px;
}

.search img {
  width: 20px;
  position: relative;
  top: 2px;
}

.search input {
  width: 100%;
  font-size: 18px;
  padding-left: 10px;
  outline: 0;
  border: 0;
  color: #000;
  background-color: #f4f4f4;
  font-family: "Lato", sans-serif;
}

.search input::placeholder {
  color: #838f9f;
  font-size: 16px;
}