:root {
  color: #000;
  background-color: #f8f9fa;
  --nav-height: 55px;
  --brand: hsl(110, 50%, 50%);
  --surface-1: #adb5bd;
  --surface-2: #ced4da;
  --surface-3: #e9ecef;
  --surface-4: #f8f9fa;
  --text-1: #000;
}

:root.dark {
  --surface-1: #24262C;
  --surface-2: #191c21;
  --surface-3: #2e3036;
  --surface-4: #44474d;
  --text-1: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  background-color: var(--surface-2);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100dvh;
}

header {
  position: sticky;
  top: 0;
  color: white;
  text-align: center;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-3);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-1);
}

#theme-toggle .icon-sun {
  display: none;
}

#theme-toggle .icon-moon {
  display: inherit;
}

:root.dark #theme-toggle .icon-sun {
  display: inline;
}

:root.dark #theme-toggle .icon-moon {
  display: none;
}

.feather-moon {
  color: var(--text-1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  opacity: 1;
}
.nav a {
  color: var(--text-1);
  text-decoration: none;
}
.nav ul li {
  list-style: none;
}
.nav ul li a {
  padding: 1rem;
  border-radius: 8px;
}
.nav ul li a:hover {
  background-color: var(--surface-2);
}

.nav--rounded {
  margin: 1rem;
  border-radius: 16px;
}

.nav-btn {
  flex: 0;
  background-color: var(--surface-3);
  border-color: transparent;
  cursor: pointer;
  border-radius: 8px;
  height: auto;
}
.nav-btn:hover {
  background-color: var(--surface-2);
}

.main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1em;
}

.content {
  width: 100%;
  max-width: 680px;
}

.container {
  max-width: 680px !important;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: var(--surface-1);
  color: var(--text-1);
}

.card {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 2rem;
  border-radius: 16px;
  background-color: var(--surface-3);
  color: var(--text-1);
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.width-100 {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-centered {
  align-items: center;
  justify-content: center;
}

.flex-align-center {
  align-items: center;
}

.flex-justify-center {
  justify-content: center;
}

.gap-8 {
  gap: 1rem;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeLiftIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-lift-in {
  animation: fadeLiftIn 300ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .fade-lift-in {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/*# sourceMappingURL=main.css.map */
