.footer {
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background-color);
  height: auto;
  padding-top: 40px;
  color: var(--text-color);
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.footer-content h3 {
  font-size: 2.1rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 3rem;
  text-decoration: solid;
}
.footer-content h3:hover {
  transform: translateY(-2px);
  color: var(--hover-color);
}
.socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 3rem 0;
}

.socials li {
  margin: 0 10px;
}

.social-img {
  /*object-fit: cover;*/
  height: auto;
  width: 60px;
  transition: 0.5s;
}

.socials li:hover {
  transform: scale(1.1);
}

.footer-goodbye {
  left: 0;
  bottom: 0;
  background-color: #36454f;
  color: #cacdd2;
  text-align: center;
}

.footer-goodbye #h3 {
  font-size: 2rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 3rem;
  text-decoration: solid;
  font-family: "Poppins", sans-serif, "arial";
}