footer .container {
  position: relative;
  background: #c4d8e5;
  padding: 3rem 3rem 1rem;
  border-radius: 30px;
  text-align: center;
}

footer .container::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: 85px;
  right: 200px;
  background: url("../assets/flyingkitty.png") no-repeat;
  background-size: contain;
  will-change: transform;
  animation: cat-peek linear;
  animation-timeline: view();
  animation-range: entry 0% cover 150%;
}

@keyframes cat-peek {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(900px, -1105px);
  }
}

footer .container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url(../assets/wave.svg) no-repeat;
  background-size: contain;
  background-position: left bottom;
  height: 262px;
  pointer-events: none;
}

footer span {
  display: block;
  margin-bottom: 1rem;
  font-style: normal;
  color: #2e282a;
}

footer a {
  display: inline-block;
}

footer small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10rem;
  color: #2e282a;
}

@media (max-width: 800px) {
  footer .container {
    padding: 2rem 2rem 1rem;
  }

  footer .container::before {
    width: 80px;
    height: 80px;
  }

  footer small {
    margin-top: 8rem;
  }
}

@media (max-width: 560px) {
  footer .container::before {
    animation: unset;
    bottom: unset;
    top: -35px;
    right: 5px;
  }
}