main {
  margin: 2rem;
}
.gradient1::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 0, 0.336),
    rgba(255, 0, 255, 0.336)
  );
  z-index: -1; /* Ensures it's behind the content but above the image */
}

#backgroundImg {
  z-index: -5;
  width: 100%;
  object-fit: cover;
  position: fixed;
  /* filter: brightness(35%) saturate(0%); */
}

header {
  margin-bottom: 2rem;
  height: 25vh;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(0, 132, 132, 0.893);
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  z-index: 3;
  position: absolute;
  width: 100%;
  justify-content: center;
}

h2 {
  text-align: left;
  margin-bottom: 1rem;
}

main img {
  width: 30%;
  float: left;
  margin-right: 4rem;
  height: 40%;
}

/*Mobile View*/
@media (max-width: 700px) {
  main img {
    width: 100%;
    float: none;
    margin-bottom: 2rem;
  }
}
