* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
}

svg {
  width: 90vmin;
  height: 100vmin;
}

path {
  cursor: pointer;
}

.image {
  background: url("https://theintercept.imgix.net/wp-uploads/sites/1/2022/02/wildfire-feature-theintercept.jpg?auto=compress%2Cformat&q=90&fit=crop&w=3000&h=1500");
  background-position-x: 0%;
  background-repeat: repeat;
  background-size: auto;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-x: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-size: cover;
}

.blob {
  bottom: -15%;
  right: -40%;
  width: 100%;
  position: absolute;
  opacity: 0.7;
  mix-blend-mode: screen;
  height: 100%;
}

.blob2 {
  bottom: -25%;
  left: 0;
  width: 100%;
  position: absolute;
  opacity: 0.7;
  mix-blend-mode: overlay;
  width: 100%;
}

.blob3 {
  bottom: -30%;
  left: 50%;
  width: 100%;
  position: absolute;
  transform: translate(-50%, 0);
  opacity: 0.7;
  mix-blend-mode: screen;
}

@media only screen and (max-width: 600px) {
  .blob {
    bottom: -15%;
    opacity: 0.35;
  }
}