footer {
  display: flex;
  padding: 2em;
  flex-direction: row-reverse;
}

.date {
  position: absolute;
  align-items: flex-end;
  width: 160px;
}

footer p {
  font-family: "Brittany Signature";
  color: var(--dark-red);
}

.footer-contact-link {
  font-family: "Lemon Tuesday";
  font-size: 1rem;
  color: var(--dark-red);
  text-decoration: none;
}

.footer-contact-link:hover {
  opacity: 0.7;
  color: var(--pink);
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
  width: 100%;
  justify-content: center;
}

.footer-link svg {
  width: 25px;
  color: var(--dark-red);
  transition: 0.3s ease-in-out;
}

.footer-link img {
  width: 25px;
  transition: 0.3s ease-in-out;
}

.footer-link img:hover,
.footer-link svg:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  footer p {
    text-align: center;
  }

  .date {
    position: relative;
    align-self: center;
  }
}
