/* Styles pour le corps de la page */
body 
{
  font-family: 'Courier New', Courier, monospace;
  margin-left: 10%;
  margin-right: 10%;
  background-color: #020D19;
}

/* Styles pour le contenu de la page */
img 
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0 ;
  left: 0;
  right: 0;
  filter: brightness(20%);
  z-index: 0; /* Z-index inférieur à celui du footer */
}
.container 
{
  text-align: center;
  margin-top: 50vh; /* poussé de la moitié de hauteur de viewport */
  transform: translateY(-50%); /* tiré de la moitié de sa propre hauteur */
  z-index: 1;
}

p
{
  color : rgb(255, 255, 255);
  font-size: 16px;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
}

h1
{
  color: rgb(255, 255, 255);
  font-size: 36px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h2
{
  color: rgb(255, 255, 255);
  font-size: 24px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20vh;
}

button 
{
  width: 50%;
  margin-top: 3%;
  font-size: 17px;
  padding: 0.5em 2em;
  border: transparent;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  background: #575757;
  color: white;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
 }
 
 button:hover 
 {
  background: #5A5C6C;
  background: linear-gradient(10deg, #5A5C6C 0%, #4D0808 100%);
  color: #fff;
 }
 
 button:active 
 {
  transform: translate(0em, 0.2em);
 }

/*style pour les liens*/
a 
{
  color: rgb(255, 255, 255);
  text-decoration: none;
}

a:hover 
{
  color: rgb(255, 255, 255);
  text-decoration: none;
}

a:visited 
{
  color: rgb (220,220,220);
  text-decoration: none;
}

legend{
  color: rgb(255, 255, 255);
  font-size: 36px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.formulaire
{
  text-align: center;
  margin-top: 20vh; /* poussé de la moitié de hauteur de viewport */
  transform: translateY(-50%); /* tiré de la moitié de sa propre hauteur */
  z-index: 1;
}

label{
  color: rgb(255, 255, 255);
  font-size: 1.5em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}