body {
  font-family: 'Geist', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0.75rem;
  font-size: 1rem;
  line-height: 1.2;
}

@media (width >= 48rem) {
  body {
    line-height: 1.6;
  }
}

.dark-theme {
  background: rgba(255, 255, 255, 1);
}

.dark-text {
  color: rgba(0, 0, 0, 1);
}

@media (prefers-color-scheme: dark) {
  .dark-text.adaptive {
    color: rgba(255, 255, 255, 1);
  }
}

@media (prefers-color-scheme: dark) {
  .dark-theme.adaptive {
    background: rgba(10, 10, 10, 1);
  }
}

.index-header {
  display: flex;
  justify-content: center;
}

.index-main {
  display: flex;
  justify-content: center;
}

.index-max-width {
  max-width: 80rem;
}

.index-header-h1 {
  text-align: center;
}

.index-header-a {
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  .index-header-a.adaptive {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
  }
}

.index-header-a:hover {
  text-decoration: underline;
}

.index-nav {
  display: flex;
  justify-content: center;
}

.index-ul {
  list-style-type: none;
  display: flex;
  gap: 3rem;
}

.index-footer {
  display: flex;
  justify-content: center;
  line-height: 1.2;
}

.footer-gradient {
  color: rgba(255, 255, 255, 1);
  background-image: linear-gradient(to right, rgba(43, 127, 255, 1), rgba(173, 70, 255, 1), rgba(255, 32, 86, 1));
}

.index-footer-a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.index-footer-a:hover {
  text-decoration: underline;
}

.footer-border {
  border-radius: 0.5rem;
}
