.copyright,
.label,
.legal-disclosure {
  opacity: 1;
  font-size: 14px;
}
body {
  color: #0f0f0f;
  background-color: #d3d3d3;
  margin: 0;
  padding: 0;
  background: linear-gradient(-45deg, #c9dabf, #9ca986, #808d7c, #5f6f65);
  background-size: 400% 400%;
  animation: 15s infinite gradient;
  height: 100vh;
}
@keyframes gradient {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
a {
  all: unset;
}
.nunito-sans-16 {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}
.overall-container {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  min-height: 100vh;
}
.content-container {
  padding: 0 8px;
  flex: 1;
}
.heading {
  margin: 64px 0 24px;
}
.contact,
.navigate {
  display: flex;
  justify-content: center;
  margin: 32px auto;
}
.back-button:hover,
.email-link:hover,
.legal-disclosure:hover {
  cursor: pointer;
  opacity: 0.8;
  font-weight: 700;
}
.social-container {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin: 32px auto;
}
.social-item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  align-items: center;
  gap: 4px;
}
.social-item:hover {
  cursor: pointer;
  opacity: 0.8;
}
.social-item:hover > .label {
  font-weight: 700;
}
.image-wrapper {
  width: 40px;
  height: 40px;
  overflow: hidden;
}
.image {
  width: 100%;
  filter: invert(1);
}
.label {
  width: 80px;
  text-align: center;
}
.footer-container {
  max-width: 720px;
  display: flex;
  justify-content: space-between;
  bottom: 0;
  padding: 16px 8px;
}
