#svg img,
#svg-external object {
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
}

#svg img:hover,
#svg-external object:hover {
  transform: scale(1.5);
}

#svg {
  display: flex;
  justify-content: flex-start; 
}

#svg img {
  width: 325px;
  height: auto;
  transform: translateX(400px);  
}

#svg-external {
  display: flex;
  justify-content: flex-end;
}

#svg-external object {
  width: 200px;
  height: auto;
}

header {
  background-color: #000000;
  color: white;
  padding: 20px 0;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

h2 {
  color: rgb(255, 255, 255);
  font-size: 40px;
  margin-top: 70px;
  display: block;
}












  