.footer {
  width: 100%;
  background: linear-gradient(to bottom, #1a1a1a, #2e2e2e);
  color: #f0f0f0;
  padding: 1rem;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  min-height: 120px; 
  padding: 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}
.footer .email,
.footer .quote,
.footer .copy {
  flex: 1 1 300px;
}
.footer a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: filter 0.3s ease;
}
 
.footer a:hover {
  filter: brightness(1.5);
}

.footer .email {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 2px #000;
}

.footer .quote{
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: #cccccc;
  text-shadow: 1px 1px 2px #000;
}
.footer .quote img{
width: 30px;
 
justify-content: center;
} 
.footer .copy {
  font-size: 0.85rem;
  color: #888888;
}
/* .poop-emoji{
  font-size: 2rem;
  animation: wiggle 1.5s infinite;
  margin-top: 0.5rem;
  filter: drop-shadow(0 0 3px #fff);
  cursor: default;
} */
.poop-emoji img{
 width: 50px;
  animation: wiggle 1.5s infinite;
  margin-top: 0.5rem;
  filter: drop-shadow(0 0 1px #fff);
  cursor: default;
}
 

 
@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg) translateX(0);
  }
  25% {
    transform: rotate(3deg) translateX(2px);
  }
  50% {
    transform: rotate(0deg) translateX(0);
  }
  75% {
    transform: rotate(-3deg) translateX(-2px);
  }
}
 
@media screen and (max-width: 540px) {
  .footer {
    font-size: 0.9rem;
    padding: 1.5rem 1rem;
  }

  .footer .email {
    font-size: 1rem;
  }

  .footer .copy {
    font-size: 0.75rem;
  }
}
