/*
  But :     
  Auteur : Bernardo Simoes
  Date :   22.05.2024 / V1.0
*/
body {
  background-color: grey;
}

#container {
  background-color: white;
  width: 90%;
  padding: 1em;
  border: 1px solid black;
  margin: auto;
  font-family: Verdana, Arial, serif;
}

.user-form .field {
  padding: 0.5em;
  background: #eeeeee;
}

.user-form .field label {
  display: inline-block;
  width: 10em;
}

.user-form .field input {
  display: inline-block;
}

.user-form .button {
  padding-top: 0.25em;
  text-align: center;
}

.user-form input[type=submit] {
  font-size: 1em;
  color:#ffffff;
  background-color: #a0a0a0;
}


header {
  display: flex;
  align-items: center; /* Align the items vertically in the center */
}

a {
  text-decoration:none;
  color: black;
}

header img:hover{
  transform: scale(1.1);
}

header h1{
  margin-left: 10px;
}
header h1:hover{
  transform: scale(1.1);
}