body {
  font-family: "Bona Nova", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
/* Header Styles */

header {
  background: linear-gradient(135deg, #4b4228, #dba334);
  color: white;
  padding: 1rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

/* Heading Styles */

h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
}

h2 {
  color: #2c3e50;
  border-bottom: 2px solid #dbc534;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}

header h2 {
  color: white;
  border-bottom: none;
}

/* Project Styles */

.projects {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.projects ul {
  list-style-type: none;
  padding: 0;
}

.projects li {
  margin: 1rem 0;
  padding: 1rem;
  border-left: 4px solid #dba134;
  background-color: #f8f9fa;
  transition: transform 0.2s;
}

.projects li:hover {
  transform: translateX(10px);
  background-color: #e9ecef;
}

/* Link Styles */

a {
  color: #8f7443;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

a:hover {
  color: #d1921c;
  border-bottom-color: #d1921c;
}

/* Button Styles */

.home-button-container {
  text-align: center;
  margin: 30px 0;
}

.home-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #dba334;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  font-family: "Gideon Roman", sans-serif;
  box-shadow: 0 2px 4px;
}

.home-button:hover {
  background-color: #ae7f29;
  color: white;
  border-bottom: none;
}

/* Footer Styles */

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #dbc534;
  text-align: center;
  font-size: 0.9em;
  color: #4b4228;
}

footer a {
  line-height: 2;
  padding: 0 1em;
}

footer :first-child {
  margin-right: auto;
}

/* Responsive Design */

@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }
}
