.footer {
  display: flex;
  flex-direction: column;
  background: var(--color1);
  color: var(--white);
  gap: 4rem;

  justify-content: end;
}

.last-invite {
  padding: 4rem 4rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.last-invite-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.last-invite-text h1 {
  color: var(--white, #fff);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.045rem;
}

.footer-orignal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-orignal h2 {
  color: var(--white);
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
}

.footer-orignal nav {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.footer-orignal a {
  display: flex;
  padding: 0.1rem;

  transition: all 0.3 ease-in-out;
}

.footer-orignal a:hover {
  filter: brightness(0.9);
  transform: scale(1.1);
}

.footer-orignal a:active {
  transform: scale(0.9);
}

.text1-footer {
  color: var(--white);
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-copyright {
  display: flex;
  gap: 4px;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding-bottom: 1rem;
}

.fotter-link {
  color: var(--white);
  cursor: pointer;
  text-decoration: underline;
}
.fotter-link:active {
  transform: scale(0.9);
}

.fotter-link:hover {
  transform: none !important;
}
