html {
    height: 100%;
  }
body{
    margin: 0px;
    padding: 0px;
    font-family: consolas;
    font-size: 18px;
    height: 100%;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #111;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover{
    background-color: #04AA6D;
  }

  .title{
    padding-top: 1%;
    color: white;
    font-weight: bold;
    padding-left: 1%;
    padding-right: 1%;
    text-decoration: underline;
  }
footer{
    display: block;
    background-color: #111;
    color: white;
   position: fixed; 
    left: 0;
    bottom: 0;
    width: 100%;
}
footer p{
    padding-left: 0.5%;
}
footer p a {
    color: white;
    text-decoration: none;
    margin-top: 0%;
    padding-top: 0%;
}
footer a:hover{
    text-decoration: underline;
}
.main{
    display: block;
    margin-top: 1%;
    margin-left: 1%;
    margin-right: 1%;
}
.button1 {
    border-radius: 40px;
    width: 200px;
    height: 50px;
    background: radial-gradient(#4CAF50, #4CAF50);
    color: white;
    border: 2px solid;
    padding: 0.5%;
    text-decoration: none;
}
.button1:hover{
    background: radial-gradient(#4CAF30, #4CAF50);
}
.text{
    margin-top: 2%;
    padding: 10px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%), 0 2px 10px 0 rgb(0 0 0 / 10%);
    border-radius: 40px;
}
input[type=text],input[type=password], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 1% 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  .formulaire {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    height: 29.3em;
    margin-left: 1%;
    margin-right: 1%;
  }
  table{
    width: 100%;
  }
  th{
    border: solid black;
    text-align: center;
    background-color: #04AA6D;
}
  td{
    border: solid black;
    text-align: center;
}
tr:hover{
    background-color: lightgreen;
}
.aff {
    border-radius: 5px;
    padding: 20px;
    margin-left: 1%;
    margin-right: 1%;
    display: block;
    height: 100%;
  }
  .aff p{
    width: max-content;
  }
  .aff img{
    width: max-content;
    float: right;
    display: inline;
    position: relative;
    bottom: 15em;
  }
  .error h3{
    color:rgb(255, 0, 0);
  }