@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Special+Elite&family=Big+Shoulders+Stencil+Text&family=Jockey+One&family=Chakra+Petch&family=Play&family=Expletus+Sans&family=Aldrich&family=Anton&family=Archivo+Black&family=Passion+One&family=Russo+One&family=Patua+One&family=Alfa+Slab+One&family=Ultra&family=Armata&family=Krona+One&display=swap");

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.header {
  display: flex;
  align-items: center;
  background-color: var(--color1);
  padding: 10px;
  /* height: 120px; */
  height: 100px;
}

.header img {
  height: 100px;
  margin-right: 20px;
  border-radius: 10px;
}

.header h1 {
  flex: 1;
  text-align: center;
  color: var(--color2);
  font-family: var(--font);
  font-size: 2em;
  line-height: 100px; /* Match this to the image height to vertically center */
  position: relative; /* Enable positioning */
  left: -140px; /* Move the h1 element to the left by 140px */
}
