
/* FOOTER */
footer {
  background-color: #333;
  color: white;
  padding: 2rem 5%;
}

footer .about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

footer .logo h1 {
  font-family: "DM Serif Text", serif;
  font-size: 2rem;
}

.social {
  display: flex;
  gap: 2.5rem;
}

.social a {
  color: white;
  font-size: 2.5rem;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social a:nth-child(1):hover {
  color: #1877F2;
}
.social a:nth-child(2):hover {
  color: #E1306C;
}


footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer ul li {
  cursor: pointer;
  width: fit-content;
  font-size: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

footer ul li:hover {
  color: #d9b68c;
}