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

body {
  font-family: serif;
  line-height: 1.6;
  margin: 0;
  color: #111;
  background: #fff;
}

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: white;
}

.site-nav {
  background: white;
}

.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;
}

.search {
  margin: 1rem 0;
}

#search-input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: none;
  border-radius: 6px;
  background: #f5f5f5;
  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 */