footer {
  font-family: "Century Gothic", "AppleGothic", sans-serif;
  background-color: rgb(25, 25, 25);
  color: white;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease-in-out;
}

.social-icon img:hover {
  transform: scale(1.1);
}

.footer-text {
  font-size: 0.9em;
}
