* {
  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;
}

.wave {
  //mix-blend-mode: lighten;
  opacity: 0.9;
  position: absolute;
  bottom: -10px;
  transform: translateX(100%);
  animation: move 30s linear infinite;
  animation-delay: -3s;
}

@keyframes move {
  to {
    transform: translateX(-100%);
  }
}

.image {
  background: url("https://theintercept.imgix.net/wp-uploads/sites/1/2022/02/flood-feature-theintercept.jpg?auto=compress%2Cformat&q=90&fit=crop&w=3000&h=1500");
  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;
}