body{
    background-image: url(/Images/logo.png);
}

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);
  }