header {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

:root {
  --color-text: #ffffffe3;
  --color-background: #0a0a09;
  --color-header-background: #0a0a09;
}

[data-theme=light] {
  --color-text: #1a1a18;
  --color-background: #f5f5f2;
  --color-header-background: #f5f5f2;
}

body {
  font-family: serif;
  line-height: 1.6;
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 4rem;
}

footer {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  opacity: 0.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-header-background);
}

.site-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a.active {
  font-weight: bold;
  border-bottom: 2px solid currentColor;
}

.theme-toggle-item {
  margin-left: auto;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.theme-toggle:hover {
  opacity: 0.7;
}

.theme-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.theme-toggle-icon {
  line-height: 1;
  font-size: 1.1rem;
}

.search {
  margin: 1rem 0;
}

#search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.6rem 0.75rem;
  border: none;
  border-radius: 6px;
  background: #2e2f39;
  color: inherit;
  font: inherit;
  outline: none;
}

#search-input::placeholder {
  color: #777;
}

.home-intro {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.home-profile-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.home-banner {
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
  margin: 0 0 1.5rem 0;
}

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