.moving-background {
  background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  height: 100vh;
}

.small {
  font-size: 20px;
  text-align: center;
  color: white;
}

.paw-button {
  height: 20px;
}

.thinking-dog {
  height: 200px;
}