/*
  But :     
  Auteur : Bernardo Simoes
  Date :   16.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;
}


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);
}