@font-face {
  font-family: 'DELT-Contemp';
  src: url('../assets/fonts/DELT-Contemp.woff2') format('woff2');
  font-weight: 100 200;
  font-style: normal;
}

:root {
  --color-background: #dad5d3;
  --color-border: #a7a2a0;
  --color-foreground: #000;
  --color-muted-foreground: #827874;
  --color-ring: #a4978f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
a:hover,
a:active,
a:visited {
  color: var(--color-foreground);
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  height: 100dvh;
  background: var(--color-background);
  font-family: 'DELT-Contemp', sans-serif;
  font-weight: 100;
  font-variation-settings: 'wght' 100, 'wdth' 100;
  color: var(--color-foreground);
  font-size: 1rem;
  line-height: 1.25;
}

.logo a {
  display: block;
  width: 8rem; /** 128px */
  height: 2.5rem; /** 40px */
  border-radius: 2px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

@media (min-width: 481px) {
  .main {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.footer-text {
  max-width: 21.875rem;
  width: 100%;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 481px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.copyright {
  color: var(--color-muted-foreground);
  font-size: 0.625rem;
  line-height: 1.2;
}

.social-list {
  display: flex;
  column-gap: 0.625rem;
}

.social-list a {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-muted-foreground);
  transition: color 0.2s;
  border-radius: 2px;
}

.social-list a:hover,
.social-list a:focus-visible {
  color: var(--color-foreground);
}

.social-list a:focus-visible {
  outline: 2px solid var(--color-foreground);
  outline-offset: 2px;
}

/** -------------------- Utilities -------------------- */
.text-right {
  text-align: right;
}

.text-bold {
  font-weight: 140;
  font-variation-settings: 'wght' 140, 'wdth' 100;
}

.text-link {
  text-decoration: underline;
}
