.scroll-container {
  background: url("images/scrollpaper.png");
  filter: brightness(120%);
  background-size: cover;
  background-position: center;
  border: 10px double #d4a373;
  padding: 3rem 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  position: relative;
}

.site-icon {
  display: block;
  margin: 0 auto 1rem auto;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  max-width: 120px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

body {
  font-family: 'Caudex', serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: #24292e;
  padding: 2rem;
  line-height: 1.6;
}

h1,
h2 {
  font-family: 'MedievalSharp', cursive;
  color: #5c3a21;
  text-shadow: 1px 1px 1px #2a2a29;
}

.container {
  max-width: 800px;
  margin: auto;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 3rem;
  color: #24292e;
}

.tagline {
  font-style: italic;
  color: #000000;
  margin-top: 0.5rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: #24292e;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.code-block {
  border: 2px solid #6a4f34;
  border-radius: 14px;
  background: rgb(255, 255, 255);
  padding: 1rem;
  margin: 2rem auto;
  max-width: 90%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.code-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: #24292e;
  font-family: 'Caudex', serif;
  text-align: center;
}

.bios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.bio-card {
  background-color: white;
  color: #24292e;
  border: 2px solid #ccc;
  border-radius: 6px;
  padding: 1rem;
  width: 100%;
  max-width: 300px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: inherit;
}

.bio-card:hover {
  background-color: #24292e;
  color: white;
  border-color: #24292e;
}

.bio-card img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  color: #000000;
  font-size: 0.9rem;
  margin-top: 4rem;
}

#github {
  text-align: center;
  margin: 2rem 0;
}

.github-btn {
  background-color: #24292e;
  color: white;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #24292e;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.github-btn:hover {
  background-color: white;
  color: #24292e;
  border: 2px solid #24292e;
}

#features {
  margin: 3rem 0;
  text-align: left;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  background-color: white;
  padding: 1.25rem;
  border: 2px solid #6a4f34;
  border-radius: 12px;
  font-family: 'Caudex', serif;
  text-align: center;
}