.footer .wrapper {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-row.contact {
  display: flex;
}

.footer-col.email {
  flex: 2;
}

.footer-col.email h2 {
  font-size: 3rem;
  font-weight: 400;

}

.footer-col.email h2:nth-child(2) {
  opacity: 0.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer-col.email h2:nth-child(2) {
  font-family: "outfit", sans-serif;
  font-weight: 900;
  font-size: 2rem;
}

.footer-col.email h2 span {
  font-family: "outfit", sans-serif;
  font-size: .7rem;
}

.footer-col.socials {
  flex: 1;
}

.footer .social {
  display: flex;
  gap: 1em;
  padding: 1em 0;
  border-top: 1px solid var(--border-dark);
}

.footer h1 {
  font-size: 10rem;
  letter-spacing: -0.025em;
  line-height: 100%;
}

.footer .outro h2 {
  text-align: center;
}

@media (max-width: 900px) {
  .footer-row.contact {
    flex-direction: column;
    gap: 4em;
  }

  .footer-col.email h2 {
    font-size: 2rem;
  }

  .footer-row .outro {
    text-align: center;
  }

  .footer h1 {
    position: relative;
    left: -0.05em;
    font-size: 5rem;
  }
}
